| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| identifier | String |
|
Yes | - |
| token | String |
|
Yes | - |
| expires | DateTime |
|
Yes | - |
Find zero or one VerificationToken
// Get one VerificationToken
const verificationToken = await prisma.verificationToken.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | VerificationTokenWhereUniqueInput | Yes |
Find first VerificationToken
// Get one VerificationToken
const verificationToken = await prisma.verificationToken.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | VerificationTokenWhereInput | No |
| orderBy | VerificationTokenOrderByWithRelationInput[] | VerificationTokenOrderByWithRelationInput | No |
| cursor | VerificationTokenWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | VerificationTokenScalarFieldEnum | VerificationTokenScalarFieldEnum[] | No |
Find zero or more VerificationToken
// Get all VerificationToken
const VerificationToken = await prisma.verificationToken.findMany()
// Get first 10 VerificationToken
const VerificationToken = await prisma.verificationToken.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | VerificationTokenWhereInput | No |
| orderBy | VerificationTokenOrderByWithRelationInput[] | VerificationTokenOrderByWithRelationInput | No |
| cursor | VerificationTokenWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | VerificationTokenScalarFieldEnum | VerificationTokenScalarFieldEnum[] | No |
Create one VerificationToken
// Create one VerificationToken
const VerificationToken = await prisma.verificationToken.create({
data: {
// ... data to create a VerificationToken
}
})
| Name | Type | Required |
|---|---|---|
| data | VerificationTokenCreateInput | VerificationTokenUncheckedCreateInput | Yes |
Delete one VerificationToken
// Delete one VerificationToken
const VerificationToken = await prisma.verificationToken.delete({
where: {
// ... filter to delete one VerificationToken
}
})
| Name | Type | Required |
|---|---|---|
| where | VerificationTokenWhereUniqueInput | Yes |
Update one VerificationToken
// Update one VerificationToken
const verificationToken = await prisma.verificationToken.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | VerificationTokenUpdateInput | VerificationTokenUncheckedUpdateInput | Yes |
| where | VerificationTokenWhereUniqueInput | Yes |
Delete zero or more VerificationToken
// Delete a few VerificationToken
const { count } = await prisma.verificationToken.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | VerificationTokenWhereInput | No |
Update zero or one VerificationToken
const { count } = await prisma.verificationToken.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | VerificationTokenUpdateManyMutationInput | VerificationTokenUncheckedUpdateManyInput | Yes |
| where | VerificationTokenWhereInput | No |
Create or update one VerificationToken
// Update or create a VerificationToken
const verificationToken = await prisma.verificationToken.upsert({
create: {
// ... data to create a VerificationToken
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the VerificationToken we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | VerificationTokenWhereUniqueInput | Yes |
| create | VerificationTokenCreateInput | VerificationTokenUncheckedCreateInput | Yes |
| update | VerificationTokenUpdateInput | VerificationTokenUncheckedUpdateInput | Yes |
| Name | Value |
|---|---|
| @@unique |
|
| @@index |
|
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| userId | String |
|
Yes | - |
| type | String |
|
Yes | - |
| provider | String |
|
Yes | - |
| providerAccountId | String |
|
Yes | - |
| refresh_token | String? |
|
No | - |
| access_token | String? |
|
No | - |
| oath_token | String? |
|
No | - |
| oauth_token_secret | String? |
|
No | - |
| expires_at | Int? |
|
No | - |
| token_type | String? |
|
No | - |
| scope | String? |
|
No | - |
| id_token | String? |
|
No | - |
| session_state | String? |
|
No | - |
| user | User |
|
Yes | - |
Find zero or one Account
// Get one Account
const account = await prisma.account.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AccountWhereUniqueInput | Yes |
Find first Account
// Get one Account
const account = await prisma.account.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AccountWhereInput | No |
| orderBy | AccountOrderByWithRelationInput[] | AccountOrderByWithRelationInput | No |
| cursor | AccountWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | AccountScalarFieldEnum | AccountScalarFieldEnum[] | No |
Find zero or more Account
// Get all Account
const Account = await prisma.account.findMany()
// Get first 10 Account
const Account = await prisma.account.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | AccountWhereInput | No |
| orderBy | AccountOrderByWithRelationInput[] | AccountOrderByWithRelationInput | No |
| cursor | AccountWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | AccountScalarFieldEnum | AccountScalarFieldEnum[] | No |
Create one Account
// Create one Account
const Account = await prisma.account.create({
data: {
// ... data to create a Account
}
})
| Name | Type | Required |
|---|---|---|
| data | AccountCreateInput | AccountUncheckedCreateInput | Yes |
Delete one Account
// Delete one Account
const Account = await prisma.account.delete({
where: {
// ... filter to delete one Account
}
})
| Name | Type | Required |
|---|---|---|
| where | AccountWhereUniqueInput | Yes |
Update one Account
// Update one Account
const account = await prisma.account.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | AccountUpdateInput | AccountUncheckedUpdateInput | Yes |
| where | AccountWhereUniqueInput | Yes |
Delete zero or more Account
// Delete a few Account
const { count } = await prisma.account.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | AccountWhereInput | No |
Update zero or one Account
const { count } = await prisma.account.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | AccountUpdateManyMutationInput | AccountUncheckedUpdateManyInput | Yes |
| where | AccountWhereInput | No |
Create or update one Account
// Update or create a Account
const account = await prisma.account.upsert({
create: {
// ... data to create a Account
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Account we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | AccountWhereUniqueInput | Yes |
| create | AccountCreateInput | AccountUncheckedCreateInput | Yes |
| update | AccountUpdateInput | AccountUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| sessionToken | String |
|
Yes | - |
| expires | DateTime |
|
Yes | - |
| userId | String |
|
Yes | - |
| user | User |
|
Yes | - |
Find zero or one Session
// Get one Session
const session = await prisma.session.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SessionWhereUniqueInput | Yes |
Find first Session
// Get one Session
const session = await prisma.session.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SessionWhereInput | No |
| orderBy | SessionOrderByWithRelationInput[] | SessionOrderByWithRelationInput | No |
| cursor | SessionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SessionScalarFieldEnum | SessionScalarFieldEnum[] | No |
Find zero or more Session
// Get all Session
const Session = await prisma.session.findMany()
// Get first 10 Session
const Session = await prisma.session.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | SessionWhereInput | No |
| orderBy | SessionOrderByWithRelationInput[] | SessionOrderByWithRelationInput | No |
| cursor | SessionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | SessionScalarFieldEnum | SessionScalarFieldEnum[] | No |
Create one Session
// Create one Session
const Session = await prisma.session.create({
data: {
// ... data to create a Session
}
})
| Name | Type | Required |
|---|---|---|
| data | SessionCreateInput | SessionUncheckedCreateInput | Yes |
Delete one Session
// Delete one Session
const Session = await prisma.session.delete({
where: {
// ... filter to delete one Session
}
})
| Name | Type | Required |
|---|---|---|
| where | SessionWhereUniqueInput | Yes |
Update one Session
// Update one Session
const session = await prisma.session.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SessionUpdateInput | SessionUncheckedUpdateInput | Yes |
| where | SessionWhereUniqueInput | Yes |
Delete zero or more Session
// Delete a few Session
const { count } = await prisma.session.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | SessionWhereInput | No |
Update zero or one Session
const { count } = await prisma.session.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | SessionUpdateManyMutationInput | SessionUncheckedUpdateManyInput | Yes |
| where | SessionWhereInput | No |
Create or update one Session
// Update or create a Session
const session = await prisma.session.upsert({
create: {
// ... data to create a Session
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Session we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | SessionWhereUniqueInput | Yes |
| create | SessionCreateInput | SessionUncheckedCreateInput | Yes |
| update | SessionUpdateInput | SessionUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| name | String |
|
Yes | - |
| screen_name | String |
|
Yes | - |
| location | String? |
|
No | - |
| url | String? |
|
No | - |
| description | String? |
|
No | - |
| detail | String? |
|
No | - |
| protected | Boolean |
|
Yes | - |
| verified | Boolean |
|
Yes | - |
| String? |
|
No | - | |
| emailVerified | DateTime? |
|
No | - |
| google_id | String? |
|
No | - |
| google_username | String? |
|
No | - |
| google_email | String? |
|
No | - |
| discord_id | String? |
|
No | - |
| discord_username | String? |
|
No | - |
| discord_email | String? |
|
No | - |
| twitter_id | String? |
|
No | - |
| twitter_username | String? |
|
No | - |
| twitter_email | String? |
|
No | - |
| image | String? |
|
No | - |
| password | String? |
|
No | - |
| role | UserRole |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| followers_count | Int |
|
Yes | - |
| friends_count | Int |
|
Yes | - |
| favorites_count | Int |
|
Yes | - |
| statuses_count | Int |
|
Yes | - |
| reputation_count | Float |
|
Yes | - |
| normalized_reputation | Int |
|
Yes | - |
| profile_banner_url | String? |
|
No | - |
| profile_image_url | String? |
|
No | - |
| evm_address | String? |
|
No | - |
| bech32_address | String? |
|
No | - |
| cryptoLoginNonce | CryptoLoginNonce? |
|
No | - |
| accounts | Account[] |
|
Yes | - |
| sessions | Session[] |
|
Yes | - |
| tweets | Tweet[] |
|
Yes | - |
| likes | Like[] |
|
Yes | - |
| reputations | Reputation[] |
|
Yes | - |
| votes | Vote[] |
|
Yes | - |
| followers | Follower[] |
|
Yes | - |
| following | Follower[] |
|
Yes | - |
| retweets | Retweet[] |
|
Yes | - |
| bookmarks | Bookmark[] |
|
Yes | - |
| sent_messages | Message[] |
|
Yes | - |
| received_messages | Message[] |
|
Yes | - |
| conversations | Conversation[] |
|
Yes | - |
| pinned_tweet | Tweet? |
|
No | - |
| pinned_tweet_id | String? |
|
No | - |
Find zero or one User
// Get one User
const user = await prisma.user.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
Find first User
// Get one User
const user = await prisma.user.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
| orderBy | UserOrderByWithRelationInput[] | UserOrderByWithRelationInput | No |
| cursor | UserWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserScalarFieldEnum | UserScalarFieldEnum[] | No |
Find zero or more User
// Get all User
const User = await prisma.user.findMany()
// Get first 10 User
const User = await prisma.user.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
| orderBy | UserOrderByWithRelationInput[] | UserOrderByWithRelationInput | No |
| cursor | UserWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | UserScalarFieldEnum | UserScalarFieldEnum[] | No |
Create one User
// Create one User
const User = await prisma.user.create({
data: {
// ... data to create a User
}
})
| Name | Type | Required |
|---|---|---|
| data | UserCreateInput | UserUncheckedCreateInput | Yes |
Delete one User
// Delete one User
const User = await prisma.user.delete({
where: {
// ... filter to delete one User
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
Update one User
// Update one User
const user = await prisma.user.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserUpdateInput | UserUncheckedUpdateInput | Yes |
| where | UserWhereUniqueInput | Yes |
Delete zero or more User
// Delete a few User
const { count } = await prisma.user.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereInput | No |
Update zero or one User
const { count } = await prisma.user.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | UserUpdateManyMutationInput | UserUncheckedUpdateManyInput | Yes |
| where | UserWhereInput | No |
Create or update one User
// Update or create a User
const user = await prisma.user.upsert({
create: {
// ... data to create a User
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the User we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | UserWhereUniqueInput | Yes |
| create | UserCreateInput | UserUncheckedCreateInput | Yes |
| update | UserUpdateInput | UserUncheckedUpdateInput | Yes |
Find zero or one Follower
// Get one Follower
const follower = await prisma.follower.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FollowerWhereUniqueInput | Yes |
Find first Follower
// Get one Follower
const follower = await prisma.follower.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FollowerWhereInput | No |
| orderBy | FollowerOrderByWithRelationInput[] | FollowerOrderByWithRelationInput | No |
| cursor | FollowerWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FollowerScalarFieldEnum | FollowerScalarFieldEnum[] | No |
Find zero or more Follower
// Get all Follower
const Follower = await prisma.follower.findMany()
// Get first 10 Follower
const Follower = await prisma.follower.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | FollowerWhereInput | No |
| orderBy | FollowerOrderByWithRelationInput[] | FollowerOrderByWithRelationInput | No |
| cursor | FollowerWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | FollowerScalarFieldEnum | FollowerScalarFieldEnum[] | No |
Create one Follower
// Create one Follower
const Follower = await prisma.follower.create({
data: {
// ... data to create a Follower
}
})
| Name | Type | Required |
|---|---|---|
| data | FollowerCreateInput | FollowerUncheckedCreateInput | Yes |
Delete one Follower
// Delete one Follower
const Follower = await prisma.follower.delete({
where: {
// ... filter to delete one Follower
}
})
| Name | Type | Required |
|---|---|---|
| where | FollowerWhereUniqueInput | Yes |
Update one Follower
// Update one Follower
const follower = await prisma.follower.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FollowerUpdateInput | FollowerUncheckedUpdateInput | Yes |
| where | FollowerWhereUniqueInput | Yes |
Delete zero or more Follower
// Delete a few Follower
const { count } = await prisma.follower.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | FollowerWhereInput | No |
Update zero or one Follower
const { count } = await prisma.follower.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | FollowerUpdateManyMutationInput | FollowerUncheckedUpdateManyInput | Yes |
| where | FollowerWhereInput | No |
Create or update one Follower
// Update or create a Follower
const follower = await prisma.follower.upsert({
create: {
// ... data to create a Follower
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Follower we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | FollowerWhereUniqueInput | Yes |
| create | FollowerCreateInput | FollowerUncheckedCreateInput | Yes |
| update | FollowerUpdateInput | FollowerUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| user_id | String |
|
Yes | - |
| follower_id | String |
|
Yes | - |
| balance | Float |
|
Yes | - |
| amount | Float |
|
Yes | - |
| description | String |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
Find zero or one Transaction
// Get one Transaction
const transaction = await prisma.transaction.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TransactionWhereUniqueInput | Yes |
Find first Transaction
// Get one Transaction
const transaction = await prisma.transaction.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TransactionWhereInput | No |
| orderBy | TransactionOrderByWithRelationInput[] | TransactionOrderByWithRelationInput | No |
| cursor | TransactionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TransactionScalarFieldEnum | TransactionScalarFieldEnum[] | No |
Find zero or more Transaction
// Get all Transaction
const Transaction = await prisma.transaction.findMany()
// Get first 10 Transaction
const Transaction = await prisma.transaction.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | TransactionWhereInput | No |
| orderBy | TransactionOrderByWithRelationInput[] | TransactionOrderByWithRelationInput | No |
| cursor | TransactionWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TransactionScalarFieldEnum | TransactionScalarFieldEnum[] | No |
Create one Transaction
// Create one Transaction
const Transaction = await prisma.transaction.create({
data: {
// ... data to create a Transaction
}
})
| Name | Type | Required |
|---|---|---|
| data | TransactionCreateInput | TransactionUncheckedCreateInput | Yes |
Delete one Transaction
// Delete one Transaction
const Transaction = await prisma.transaction.delete({
where: {
// ... filter to delete one Transaction
}
})
| Name | Type | Required |
|---|---|---|
| where | TransactionWhereUniqueInput | Yes |
Update one Transaction
// Update one Transaction
const transaction = await prisma.transaction.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TransactionUpdateInput | TransactionUncheckedUpdateInput | Yes |
| where | TransactionWhereUniqueInput | Yes |
Delete zero or more Transaction
// Delete a few Transaction
const { count } = await prisma.transaction.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TransactionWhereInput | No |
Update zero or one Transaction
const { count } = await prisma.transaction.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TransactionUpdateManyMutationInput | TransactionUncheckedUpdateManyInput | Yes |
| where | TransactionWhereInput | No |
Create or update one Transaction
// Update or create a Transaction
const transaction = await prisma.transaction.upsert({
create: {
// ... data to create a Transaction
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Transaction we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | TransactionWhereUniqueInput | Yes |
| create | TransactionCreateInput | TransactionUncheckedCreateInput | Yes |
| update | TransactionUpdateInput | TransactionUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| text | String? |
|
No | - |
| source | String |
|
Yes | - |
| in_reply_to_user_id | String? |
|
No | - |
| in_reply_to_screen_name | String? |
|
No | - |
| is_quote_status | Boolean |
|
Yes | - |
| quoted_status_id | String? |
|
No | - |
| quote_count | Int |
|
Yes | - |
| reply_count | Int |
|
Yes | - |
| retweet_count | Int |
|
Yes | - |
| favorite_count | Int |
|
Yes | - |
| vote_count | Int |
|
Yes | - |
| possibly_sensitive | Boolean |
|
Yes | - |
| lang | String |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
| author | User |
|
Yes | - |
| author_id | String |
|
Yes | - |
| media | Media[] |
|
Yes | - |
| likes | Like[] |
|
Yes | - |
| votes | Vote[] |
|
Yes | - |
| retweets | Retweet[] |
|
Yes | - |
| quotes | Tweet[] |
|
Yes | - |
| quoted_tweet_id | String? |
|
No | - |
| quoted_tweet | Tweet? |
|
No | - |
| comments | Tweet[] |
|
Yes | - |
| in_reply_to_status_id | String? |
|
No | - |
| tweet_comment | Tweet? |
|
No | - |
| bookmarks | Bookmark[] |
|
Yes | - |
| pinned_by_users | User[] |
|
Yes | - |
Find zero or one Tweet
// Get one Tweet
const tweet = await prisma.tweet.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TweetWhereUniqueInput | Yes |
Find first Tweet
// Get one Tweet
const tweet = await prisma.tweet.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TweetWhereInput | No |
| orderBy | TweetOrderByWithRelationInput[] | TweetOrderByWithRelationInput | No |
| cursor | TweetWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TweetScalarFieldEnum | TweetScalarFieldEnum[] | No |
Find zero or more Tweet
// Get all Tweet
const Tweet = await prisma.tweet.findMany()
// Get first 10 Tweet
const Tweet = await prisma.tweet.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | TweetWhereInput | No |
| orderBy | TweetOrderByWithRelationInput[] | TweetOrderByWithRelationInput | No |
| cursor | TweetWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | TweetScalarFieldEnum | TweetScalarFieldEnum[] | No |
Create one Tweet
// Create one Tweet
const Tweet = await prisma.tweet.create({
data: {
// ... data to create a Tweet
}
})
| Name | Type | Required |
|---|---|---|
| data | TweetCreateInput | TweetUncheckedCreateInput | Yes |
Delete one Tweet
// Delete one Tweet
const Tweet = await prisma.tweet.delete({
where: {
// ... filter to delete one Tweet
}
})
| Name | Type | Required |
|---|---|---|
| where | TweetWhereUniqueInput | Yes |
Update one Tweet
// Update one Tweet
const tweet = await prisma.tweet.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TweetUpdateInput | TweetUncheckedUpdateInput | Yes |
| where | TweetWhereUniqueInput | Yes |
Delete zero or more Tweet
// Delete a few Tweet
const { count } = await prisma.tweet.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | TweetWhereInput | No |
Update zero or one Tweet
const { count } = await prisma.tweet.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | TweetUpdateManyMutationInput | TweetUncheckedUpdateManyInput | Yes |
| where | TweetWhereInput | No |
Create or update one Tweet
// Update or create a Tweet
const tweet = await prisma.tweet.upsert({
create: {
// ... data to create a Tweet
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Tweet we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | TweetWhereUniqueInput | Yes |
| create | TweetCreateInput | TweetUncheckedCreateInput | Yes |
| update | TweetUpdateInput | TweetUncheckedUpdateInput | Yes |
Find zero or one Media
// Get one Media
const media = await prisma.media.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | MediaWhereUniqueInput | Yes |
Find first Media
// Get one Media
const media = await prisma.media.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | MediaWhereInput | No |
| orderBy | MediaOrderByWithRelationInput[] | MediaOrderByWithRelationInput | No |
| cursor | MediaWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | MediaScalarFieldEnum | MediaScalarFieldEnum[] | No |
Find zero or more Media
// Get all Media
const Media = await prisma.media.findMany()
// Get first 10 Media
const Media = await prisma.media.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | MediaWhereInput | No |
| orderBy | MediaOrderByWithRelationInput[] | MediaOrderByWithRelationInput | No |
| cursor | MediaWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | MediaScalarFieldEnum | MediaScalarFieldEnum[] | No |
Create one Media
// Create one Media
const Media = await prisma.media.create({
data: {
// ... data to create a Media
}
})
| Name | Type | Required |
|---|---|---|
| data | MediaCreateInput | MediaUncheckedCreateInput | Yes |
Delete one Media
// Delete one Media
const Media = await prisma.media.delete({
where: {
// ... filter to delete one Media
}
})
| Name | Type | Required |
|---|---|---|
| where | MediaWhereUniqueInput | Yes |
Update one Media
// Update one Media
const media = await prisma.media.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | MediaUpdateInput | MediaUncheckedUpdateInput | Yes |
| where | MediaWhereUniqueInput | Yes |
Delete zero or more Media
// Delete a few Media
const { count } = await prisma.media.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | MediaWhereInput | No |
Update zero or one Media
const { count } = await prisma.media.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | MediaUpdateManyMutationInput | MediaUncheckedUpdateManyInput | Yes |
| where | MediaWhereInput | No |
Create or update one Media
// Update or create a Media
const media = await prisma.media.upsert({
create: {
// ... data to create a Media
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Media we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | MediaWhereUniqueInput | Yes |
| create | MediaCreateInput | MediaUncheckedCreateInput | Yes |
| update | MediaUpdateInput | MediaUncheckedUpdateInput | Yes |
Find zero or one Like
// Get one Like
const like = await prisma.like.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LikeWhereUniqueInput | Yes |
Find first Like
// Get one Like
const like = await prisma.like.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LikeWhereInput | No |
| orderBy | LikeOrderByWithRelationInput[] | LikeOrderByWithRelationInput | No |
| cursor | LikeWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | LikeScalarFieldEnum | LikeScalarFieldEnum[] | No |
Find zero or more Like
// Get all Like
const Like = await prisma.like.findMany()
// Get first 10 Like
const Like = await prisma.like.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | LikeWhereInput | No |
| orderBy | LikeOrderByWithRelationInput[] | LikeOrderByWithRelationInput | No |
| cursor | LikeWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | LikeScalarFieldEnum | LikeScalarFieldEnum[] | No |
Create one Like
// Create one Like
const Like = await prisma.like.create({
data: {
// ... data to create a Like
}
})
| Name | Type | Required |
|---|---|---|
| data | LikeCreateInput | LikeUncheckedCreateInput | Yes |
Delete one Like
// Delete one Like
const Like = await prisma.like.delete({
where: {
// ... filter to delete one Like
}
})
| Name | Type | Required |
|---|---|---|
| where | LikeWhereUniqueInput | Yes |
Update one Like
// Update one Like
const like = await prisma.like.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | LikeUpdateInput | LikeUncheckedUpdateInput | Yes |
| where | LikeWhereUniqueInput | Yes |
Delete zero or more Like
// Delete a few Like
const { count } = await prisma.like.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | LikeWhereInput | No |
Update zero or one Like
const { count } = await prisma.like.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | LikeUpdateManyMutationInput | LikeUncheckedUpdateManyInput | Yes |
| where | LikeWhereInput | No |
Create or update one Like
// Update or create a Like
const like = await prisma.like.upsert({
create: {
// ... data to create a Like
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Like we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | LikeWhereUniqueInput | Yes |
| create | LikeCreateInput | LikeUncheckedCreateInput | Yes |
| update | LikeUpdateInput | LikeUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| user | User |
|
Yes | - |
| user_id | String |
|
Yes | - |
| session_owner_id | String |
|
Yes | - |
| reputation_status | String |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
Find zero or one Reputation
// Get one Reputation
const reputation = await prisma.reputation.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ReputationWhereUniqueInput | Yes |
Find first Reputation
// Get one Reputation
const reputation = await prisma.reputation.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ReputationWhereInput | No |
| orderBy | ReputationOrderByWithRelationInput[] | ReputationOrderByWithRelationInput | No |
| cursor | ReputationWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ReputationScalarFieldEnum | ReputationScalarFieldEnum[] | No |
Find zero or more Reputation
// Get all Reputation
const Reputation = await prisma.reputation.findMany()
// Get first 10 Reputation
const Reputation = await prisma.reputation.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ReputationWhereInput | No |
| orderBy | ReputationOrderByWithRelationInput[] | ReputationOrderByWithRelationInput | No |
| cursor | ReputationWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ReputationScalarFieldEnum | ReputationScalarFieldEnum[] | No |
Create one Reputation
// Create one Reputation
const Reputation = await prisma.reputation.create({
data: {
// ... data to create a Reputation
}
})
| Name | Type | Required |
|---|---|---|
| data | ReputationCreateInput | ReputationUncheckedCreateInput | Yes |
Delete one Reputation
// Delete one Reputation
const Reputation = await prisma.reputation.delete({
where: {
// ... filter to delete one Reputation
}
})
| Name | Type | Required |
|---|---|---|
| where | ReputationWhereUniqueInput | Yes |
Update one Reputation
// Update one Reputation
const reputation = await prisma.reputation.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ReputationUpdateInput | ReputationUncheckedUpdateInput | Yes |
| where | ReputationWhereUniqueInput | Yes |
Delete zero or more Reputation
// Delete a few Reputation
const { count } = await prisma.reputation.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ReputationWhereInput | No |
Update zero or one Reputation
const { count } = await prisma.reputation.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ReputationUpdateManyMutationInput | ReputationUncheckedUpdateManyInput | Yes |
| where | ReputationWhereInput | No |
Create or update one Reputation
// Update or create a Reputation
const reputation = await prisma.reputation.upsert({
create: {
// ... data to create a Reputation
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Reputation we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ReputationWhereUniqueInput | Yes |
| create | ReputationCreateInput | ReputationUncheckedCreateInput | Yes |
| update | ReputationUpdateInput | ReputationUncheckedUpdateInput | Yes |
Find zero or one Vote
// Get one Vote
const vote = await prisma.vote.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | VoteWhereUniqueInput | Yes |
Find first Vote
// Get one Vote
const vote = await prisma.vote.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | VoteWhereInput | No |
| orderBy | VoteOrderByWithRelationInput[] | VoteOrderByWithRelationInput | No |
| cursor | VoteWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | VoteScalarFieldEnum | VoteScalarFieldEnum[] | No |
Find zero or more Vote
// Get all Vote
const Vote = await prisma.vote.findMany()
// Get first 10 Vote
const Vote = await prisma.vote.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | VoteWhereInput | No |
| orderBy | VoteOrderByWithRelationInput[] | VoteOrderByWithRelationInput | No |
| cursor | VoteWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | VoteScalarFieldEnum | VoteScalarFieldEnum[] | No |
Create one Vote
// Create one Vote
const Vote = await prisma.vote.create({
data: {
// ... data to create a Vote
}
})
| Name | Type | Required |
|---|---|---|
| data | VoteCreateInput | VoteUncheckedCreateInput | Yes |
Delete one Vote
// Delete one Vote
const Vote = await prisma.vote.delete({
where: {
// ... filter to delete one Vote
}
})
| Name | Type | Required |
|---|---|---|
| where | VoteWhereUniqueInput | Yes |
Update one Vote
// Update one Vote
const vote = await prisma.vote.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | VoteUpdateInput | VoteUncheckedUpdateInput | Yes |
| where | VoteWhereUniqueInput | Yes |
Delete zero or more Vote
// Delete a few Vote
const { count } = await prisma.vote.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | VoteWhereInput | No |
Update zero or one Vote
const { count } = await prisma.vote.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | VoteUpdateManyMutationInput | VoteUncheckedUpdateManyInput | Yes |
| where | VoteWhereInput | No |
Create or update one Vote
// Update or create a Vote
const vote = await prisma.vote.upsert({
create: {
// ... data to create a Vote
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Vote we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | VoteWhereUniqueInput | Yes |
| create | VoteCreateInput | VoteUncheckedCreateInput | Yes |
| update | VoteUpdateInput | VoteUncheckedUpdateInput | Yes |
Find zero or one Retweet
// Get one Retweet
const retweet = await prisma.retweet.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RetweetWhereUniqueInput | Yes |
Find first Retweet
// Get one Retweet
const retweet = await prisma.retweet.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RetweetWhereInput | No |
| orderBy | RetweetOrderByWithRelationInput[] | RetweetOrderByWithRelationInput | No |
| cursor | RetweetWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RetweetScalarFieldEnum | RetweetScalarFieldEnum[] | No |
Find zero or more Retweet
// Get all Retweet
const Retweet = await prisma.retweet.findMany()
// Get first 10 Retweet
const Retweet = await prisma.retweet.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | RetweetWhereInput | No |
| orderBy | RetweetOrderByWithRelationInput[] | RetweetOrderByWithRelationInput | No |
| cursor | RetweetWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | RetweetScalarFieldEnum | RetweetScalarFieldEnum[] | No |
Create one Retweet
// Create one Retweet
const Retweet = await prisma.retweet.create({
data: {
// ... data to create a Retweet
}
})
| Name | Type | Required |
|---|---|---|
| data | RetweetCreateInput | RetweetUncheckedCreateInput | Yes |
Delete one Retweet
// Delete one Retweet
const Retweet = await prisma.retweet.delete({
where: {
// ... filter to delete one Retweet
}
})
| Name | Type | Required |
|---|---|---|
| where | RetweetWhereUniqueInput | Yes |
Update one Retweet
// Update one Retweet
const retweet = await prisma.retweet.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RetweetUpdateInput | RetweetUncheckedUpdateInput | Yes |
| where | RetweetWhereUniqueInput | Yes |
Delete zero or more Retweet
// Delete a few Retweet
const { count } = await prisma.retweet.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | RetweetWhereInput | No |
Update zero or one Retweet
const { count } = await prisma.retweet.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | RetweetUpdateManyMutationInput | RetweetUncheckedUpdateManyInput | Yes |
| where | RetweetWhereInput | No |
Create or update one Retweet
// Update or create a Retweet
const retweet = await prisma.retweet.upsert({
create: {
// ... data to create a Retweet
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Retweet we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | RetweetWhereUniqueInput | Yes |
| create | RetweetCreateInput | RetweetUncheckedCreateInput | Yes |
| update | RetweetUpdateInput | RetweetUncheckedUpdateInput | Yes |
Find zero or one Bookmark
// Get one Bookmark
const bookmark = await prisma.bookmark.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BookmarkWhereUniqueInput | Yes |
Find first Bookmark
// Get one Bookmark
const bookmark = await prisma.bookmark.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BookmarkWhereInput | No |
| orderBy | BookmarkOrderByWithRelationInput[] | BookmarkOrderByWithRelationInput | No |
| cursor | BookmarkWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BookmarkScalarFieldEnum | BookmarkScalarFieldEnum[] | No |
Find zero or more Bookmark
// Get all Bookmark
const Bookmark = await prisma.bookmark.findMany()
// Get first 10 Bookmark
const Bookmark = await prisma.bookmark.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | BookmarkWhereInput | No |
| orderBy | BookmarkOrderByWithRelationInput[] | BookmarkOrderByWithRelationInput | No |
| cursor | BookmarkWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | BookmarkScalarFieldEnum | BookmarkScalarFieldEnum[] | No |
Create one Bookmark
// Create one Bookmark
const Bookmark = await prisma.bookmark.create({
data: {
// ... data to create a Bookmark
}
})
| Name | Type | Required |
|---|---|---|
| data | BookmarkCreateInput | BookmarkUncheckedCreateInput | Yes |
Delete one Bookmark
// Delete one Bookmark
const Bookmark = await prisma.bookmark.delete({
where: {
// ... filter to delete one Bookmark
}
})
| Name | Type | Required |
|---|---|---|
| where | BookmarkWhereUniqueInput | Yes |
Update one Bookmark
// Update one Bookmark
const bookmark = await prisma.bookmark.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BookmarkUpdateInput | BookmarkUncheckedUpdateInput | Yes |
| where | BookmarkWhereUniqueInput | Yes |
Delete zero or more Bookmark
// Delete a few Bookmark
const { count } = await prisma.bookmark.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | BookmarkWhereInput | No |
Update zero or one Bookmark
const { count } = await prisma.bookmark.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | BookmarkUpdateManyMutationInput | BookmarkUncheckedUpdateManyInput | Yes |
| where | BookmarkWhereInput | No |
Create or update one Bookmark
// Update or create a Bookmark
const bookmark = await prisma.bookmark.upsert({
create: {
// ... data to create a Bookmark
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Bookmark we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | BookmarkWhereUniqueInput | Yes |
| create | BookmarkCreateInput | BookmarkUncheckedCreateInput | Yes |
| update | BookmarkUpdateInput | BookmarkUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| text | String |
|
Yes | - |
| hashtag | String |
|
Yes | - |
| score | Int |
|
Yes | - |
| created_at | DateTime |
|
Yes | - |
Find zero or one Hashtag
// Get one Hashtag
const hashtag = await prisma.hashtag.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | HashtagWhereUniqueInput | Yes |
Find first Hashtag
// Get one Hashtag
const hashtag = await prisma.hashtag.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | HashtagWhereInput | No |
| orderBy | HashtagOrderByWithRelationInput[] | HashtagOrderByWithRelationInput | No |
| cursor | HashtagWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | HashtagScalarFieldEnum | HashtagScalarFieldEnum[] | No |
Find zero or more Hashtag
// Get all Hashtag
const Hashtag = await prisma.hashtag.findMany()
// Get first 10 Hashtag
const Hashtag = await prisma.hashtag.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | HashtagWhereInput | No |
| orderBy | HashtagOrderByWithRelationInput[] | HashtagOrderByWithRelationInput | No |
| cursor | HashtagWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | HashtagScalarFieldEnum | HashtagScalarFieldEnum[] | No |
Create one Hashtag
// Create one Hashtag
const Hashtag = await prisma.hashtag.create({
data: {
// ... data to create a Hashtag
}
})
| Name | Type | Required |
|---|---|---|
| data | HashtagCreateInput | HashtagUncheckedCreateInput | Yes |
Delete one Hashtag
// Delete one Hashtag
const Hashtag = await prisma.hashtag.delete({
where: {
// ... filter to delete one Hashtag
}
})
| Name | Type | Required |
|---|---|---|
| where | HashtagWhereUniqueInput | Yes |
Update one Hashtag
// Update one Hashtag
const hashtag = await prisma.hashtag.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | HashtagUpdateInput | HashtagUncheckedUpdateInput | Yes |
| where | HashtagWhereUniqueInput | Yes |
Delete zero or more Hashtag
// Delete a few Hashtag
const { count } = await prisma.hashtag.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | HashtagWhereInput | No |
Update zero or one Hashtag
const { count } = await prisma.hashtag.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | HashtagUpdateManyMutationInput | HashtagUncheckedUpdateManyInput | Yes |
| where | HashtagWhereInput | No |
Create or update one Hashtag
// Update or create a Hashtag
const hashtag = await prisma.hashtag.upsert({
create: {
// ... data to create a Hashtag
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Hashtag we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | HashtagWhereUniqueInput | Yes |
| create | HashtagCreateInput | HashtagUncheckedCreateInput | Yes |
| update | HashtagUpdateInput | HashtagUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| id | String |
|
Yes | - |
| text | String? |
|
No | - |
| image | String? |
|
No | - |
| created_at | DateTime |
|
Yes | - |
| sender | User |
|
Yes | - |
| sender_id | String |
|
Yes | - |
| receiver | User |
|
Yes | - |
| receiver_id | String |
|
Yes | - |
| conversation | Conversation |
|
Yes | - |
| conversation_id | String |
|
Yes | - |
| media | Media[] |
|
Yes | - |
Find zero or one Message
// Get one Message
const message = await prisma.message.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | MessageWhereUniqueInput | Yes |
Find first Message
// Get one Message
const message = await prisma.message.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | MessageWhereInput | No |
| orderBy | MessageOrderByWithRelationInput[] | MessageOrderByWithRelationInput | No |
| cursor | MessageWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | MessageScalarFieldEnum | MessageScalarFieldEnum[] | No |
Find zero or more Message
// Get all Message
const Message = await prisma.message.findMany()
// Get first 10 Message
const Message = await prisma.message.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | MessageWhereInput | No |
| orderBy | MessageOrderByWithRelationInput[] | MessageOrderByWithRelationInput | No |
| cursor | MessageWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | MessageScalarFieldEnum | MessageScalarFieldEnum[] | No |
Create one Message
// Create one Message
const Message = await prisma.message.create({
data: {
// ... data to create a Message
}
})
| Name | Type | Required |
|---|---|---|
| data | MessageCreateInput | MessageUncheckedCreateInput | Yes |
Delete one Message
// Delete one Message
const Message = await prisma.message.delete({
where: {
// ... filter to delete one Message
}
})
| Name | Type | Required |
|---|---|---|
| where | MessageWhereUniqueInput | Yes |
Update one Message
// Update one Message
const message = await prisma.message.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | MessageUpdateInput | MessageUncheckedUpdateInput | Yes |
| where | MessageWhereUniqueInput | Yes |
Delete zero or more Message
// Delete a few Message
const { count } = await prisma.message.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | MessageWhereInput | No |
Update zero or one Message
const { count } = await prisma.message.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | MessageUpdateManyMutationInput | MessageUncheckedUpdateManyInput | Yes |
| where | MessageWhereInput | No |
Create or update one Message
// Update or create a Message
const message = await prisma.message.upsert({
create: {
// ... data to create a Message
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Message we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | MessageWhereUniqueInput | Yes |
| create | MessageCreateInput | MessageUncheckedCreateInput | Yes |
| update | MessageUpdateInput | MessageUncheckedUpdateInput | Yes |
Find zero or one Conversation
// Get one Conversation
const conversation = await prisma.conversation.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConversationWhereUniqueInput | Yes |
Find first Conversation
// Get one Conversation
const conversation = await prisma.conversation.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConversationWhereInput | No |
| orderBy | ConversationOrderByWithRelationInput[] | ConversationOrderByWithRelationInput | No |
| cursor | ConversationWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ConversationScalarFieldEnum | ConversationScalarFieldEnum[] | No |
Find zero or more Conversation
// Get all Conversation
const Conversation = await prisma.conversation.findMany()
// Get first 10 Conversation
const Conversation = await prisma.conversation.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | ConversationWhereInput | No |
| orderBy | ConversationOrderByWithRelationInput[] | ConversationOrderByWithRelationInput | No |
| cursor | ConversationWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | ConversationScalarFieldEnum | ConversationScalarFieldEnum[] | No |
Create one Conversation
// Create one Conversation
const Conversation = await prisma.conversation.create({
data: {
// ... data to create a Conversation
}
})
| Name | Type | Required |
|---|---|---|
| data | ConversationCreateInput | ConversationUncheckedCreateInput | No |
Delete one Conversation
// Delete one Conversation
const Conversation = await prisma.conversation.delete({
where: {
// ... filter to delete one Conversation
}
})
| Name | Type | Required |
|---|---|---|
| where | ConversationWhereUniqueInput | Yes |
Update one Conversation
// Update one Conversation
const conversation = await prisma.conversation.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ConversationUpdateInput | ConversationUncheckedUpdateInput | Yes |
| where | ConversationWhereUniqueInput | Yes |
Delete zero or more Conversation
// Delete a few Conversation
const { count } = await prisma.conversation.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | ConversationWhereInput | No |
Update zero or one Conversation
const { count } = await prisma.conversation.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | ConversationUpdateManyMutationInput | ConversationUncheckedUpdateManyInput | Yes |
| where | ConversationWhereInput | No |
Create or update one Conversation
// Update or create a Conversation
const conversation = await prisma.conversation.upsert({
create: {
// ... data to create a Conversation
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the Conversation we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | ConversationWhereUniqueInput | Yes |
| create | ConversationCreateInput | ConversationUncheckedCreateInput | Yes |
| update | ConversationUpdateInput | ConversationUncheckedUpdateInput | Yes |
| Name | Type | Attributes | Required | Comment |
|---|---|---|---|---|
| userId | String |
|
Yes | - |
| nonce | String |
|
Yes | - |
| expires | DateTime |
|
Yes | - |
| user | User |
|
Yes | - |
Find zero or one CryptoLoginNonce
// Get one CryptoLoginNonce
const cryptoLoginNonce = await prisma.cryptoLoginNonce.findUnique({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CryptoLoginNonceWhereUniqueInput | Yes |
Find first CryptoLoginNonce
// Get one CryptoLoginNonce
const cryptoLoginNonce = await prisma.cryptoLoginNonce.findFirst({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CryptoLoginNonceWhereInput | No |
| orderBy | CryptoLoginNonceOrderByWithRelationInput[] | CryptoLoginNonceOrderByWithRelationInput | No |
| cursor | CryptoLoginNonceWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CryptoLoginNonceScalarFieldEnum | CryptoLoginNonceScalarFieldEnum[] | No |
Find zero or more CryptoLoginNonce
// Get all CryptoLoginNonce
const CryptoLoginNonce = await prisma.cryptoLoginNonce.findMany()
// Get first 10 CryptoLoginNonce
const CryptoLoginNonce = await prisma.cryptoLoginNonce.findMany({ take: 10 })
| Name | Type | Required |
|---|---|---|
| where | CryptoLoginNonceWhereInput | No |
| orderBy | CryptoLoginNonceOrderByWithRelationInput[] | CryptoLoginNonceOrderByWithRelationInput | No |
| cursor | CryptoLoginNonceWhereUniqueInput | No |
| take | Int | No |
| skip | Int | No |
| distinct | CryptoLoginNonceScalarFieldEnum | CryptoLoginNonceScalarFieldEnum[] | No |
Create one CryptoLoginNonce
// Create one CryptoLoginNonce
const CryptoLoginNonce = await prisma.cryptoLoginNonce.create({
data: {
// ... data to create a CryptoLoginNonce
}
})
| Name | Type | Required |
|---|---|---|
| data | CryptoLoginNonceCreateInput | CryptoLoginNonceUncheckedCreateInput | Yes |
Delete one CryptoLoginNonce
// Delete one CryptoLoginNonce
const CryptoLoginNonce = await prisma.cryptoLoginNonce.delete({
where: {
// ... filter to delete one CryptoLoginNonce
}
})
| Name | Type | Required |
|---|---|---|
| where | CryptoLoginNonceWhereUniqueInput | Yes |
Update one CryptoLoginNonce
// Update one CryptoLoginNonce
const cryptoLoginNonce = await prisma.cryptoLoginNonce.update({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CryptoLoginNonceUpdateInput | CryptoLoginNonceUncheckedUpdateInput | Yes |
| where | CryptoLoginNonceWhereUniqueInput | Yes |
Delete zero or more CryptoLoginNonce
// Delete a few CryptoLoginNonce
const { count } = await prisma.cryptoLoginNonce.deleteMany({
where: {
// ... provide filter here
}
})
| Name | Type | Required |
|---|---|---|
| where | CryptoLoginNonceWhereInput | No |
Update zero or one CryptoLoginNonce
const { count } = await prisma.cryptoLoginNonce.updateMany({
where: {
// ... provide filter here
},
data: {
// ... provide data here
}
})
| Name | Type | Required |
|---|---|---|
| data | CryptoLoginNonceUpdateManyMutationInput | CryptoLoginNonceUncheckedUpdateManyInput | Yes |
| where | CryptoLoginNonceWhereInput | No |
Create or update one CryptoLoginNonce
// Update or create a CryptoLoginNonce
const cryptoLoginNonce = await prisma.cryptoLoginNonce.upsert({
create: {
// ... data to create a CryptoLoginNonce
},
update: {
// ... in case it already exists, update
},
where: {
// ... the filter for the CryptoLoginNonce we want to update
}
})
| Name | Type | Required |
|---|---|---|
| where | CryptoLoginNonceWhereUniqueInput | Yes |
| create | CryptoLoginNonceCreateInput | CryptoLoginNonceUncheckedCreateInput | Yes |
| update | CryptoLoginNonceUpdateInput | CryptoLoginNonceUncheckedUpdateInput | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | VerificationTokenWhereInput | VerificationTokenWhereInput[] | No |
| OR | VerificationTokenWhereInput[] | No |
| NOT | VerificationTokenWhereInput | VerificationTokenWhereInput[] | No |
| identifier | StringFilter | String | No |
| token | StringFilter | String | No |
| expires | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | SortOrder | No |
| token | SortOrder | No |
| expires | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| token | String | No |
| identifier_token | VerificationTokenIdentifierTokenCompoundUniqueInput | No |
| AND | VerificationTokenWhereInput | VerificationTokenWhereInput[] | No |
| OR | VerificationTokenWhereInput[] | No |
| NOT | VerificationTokenWhereInput | VerificationTokenWhereInput[] | No |
| identifier | StringFilter | String | No |
| expires | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | SortOrder | No |
| token | SortOrder | No |
| expires | SortOrder | No |
| _count | VerificationTokenCountOrderByAggregateInput | No |
| _max | VerificationTokenMaxOrderByAggregateInput | No |
| _min | VerificationTokenMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | VerificationTokenScalarWhereWithAggregatesInput | VerificationTokenScalarWhereWithAggregatesInput[] | No |
| OR | VerificationTokenScalarWhereWithAggregatesInput[] | No |
| NOT | VerificationTokenScalarWhereWithAggregatesInput | VerificationTokenScalarWhereWithAggregatesInput[] | No |
| identifier | StringWithAggregatesFilter | String | No |
| token | StringWithAggregatesFilter | String | No |
| expires | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | AccountWhereInput | AccountWhereInput[] | No |
| OR | AccountWhereInput[] | No |
| NOT | AccountWhereInput | AccountWhereInput[] | No |
| id | StringFilter | String | No |
| userId | StringFilter | String | No |
| type | StringFilter | String | No |
| provider | StringFilter | String | No |
| providerAccountId | StringFilter | String | No |
| refresh_token | StringNullableFilter | String | Null | Yes |
| access_token | StringNullableFilter | String | Null | Yes |
| oath_token | StringNullableFilter | String | Null | Yes |
| oauth_token_secret | StringNullableFilter | String | Null | Yes |
| expires_at | IntNullableFilter | Int | Null | Yes |
| token_type | StringNullableFilter | String | Null | Yes |
| scope | StringNullableFilter | String | Null | Yes |
| id_token | StringNullableFilter | String | Null | Yes |
| session_state | StringNullableFilter | String | Null | Yes |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userId | SortOrder | No |
| type | SortOrder | No |
| provider | SortOrder | No |
| providerAccountId | SortOrder | No |
| refresh_token | SortOrder | SortOrderInput | No |
| access_token | SortOrder | SortOrderInput | No |
| oath_token | SortOrder | SortOrderInput | No |
| oauth_token_secret | SortOrder | SortOrderInput | No |
| expires_at | SortOrder | SortOrderInput | No |
| token_type | SortOrder | SortOrderInput | No |
| scope | SortOrder | SortOrderInput | No |
| id_token | SortOrder | SortOrderInput | No |
| session_state | SortOrder | SortOrderInput | No |
| user | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| provider_providerAccountId | AccountProviderProviderAccountIdCompoundUniqueInput | No |
| AND | AccountWhereInput | AccountWhereInput[] | No |
| OR | AccountWhereInput[] | No |
| NOT | AccountWhereInput | AccountWhereInput[] | No |
| userId | StringFilter | String | No |
| type | StringFilter | String | No |
| provider | StringFilter | String | No |
| providerAccountId | StringFilter | String | No |
| refresh_token | StringNullableFilter | String | Null | Yes |
| access_token | StringNullableFilter | String | Null | Yes |
| oath_token | StringNullableFilter | String | Null | Yes |
| oauth_token_secret | StringNullableFilter | String | Null | Yes |
| expires_at | IntNullableFilter | Int | Null | Yes |
| token_type | StringNullableFilter | String | Null | Yes |
| scope | StringNullableFilter | String | Null | Yes |
| id_token | StringNullableFilter | String | Null | Yes |
| session_state | StringNullableFilter | String | Null | Yes |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userId | SortOrder | No |
| type | SortOrder | No |
| provider | SortOrder | No |
| providerAccountId | SortOrder | No |
| refresh_token | SortOrder | SortOrderInput | No |
| access_token | SortOrder | SortOrderInput | No |
| oath_token | SortOrder | SortOrderInput | No |
| oauth_token_secret | SortOrder | SortOrderInput | No |
| expires_at | SortOrder | SortOrderInput | No |
| token_type | SortOrder | SortOrderInput | No |
| scope | SortOrder | SortOrderInput | No |
| id_token | SortOrder | SortOrderInput | No |
| session_state | SortOrder | SortOrderInput | No |
| _count | AccountCountOrderByAggregateInput | No |
| _avg | AccountAvgOrderByAggregateInput | No |
| _max | AccountMaxOrderByAggregateInput | No |
| _min | AccountMinOrderByAggregateInput | No |
| _sum | AccountSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SessionWhereInput | SessionWhereInput[] | No |
| OR | SessionWhereInput[] | No |
| NOT | SessionWhereInput | SessionWhereInput[] | No |
| id | StringFilter | String | No |
| sessionToken | StringFilter | String | No |
| expires | DateTimeFilter | DateTime | No |
| userId | StringFilter | String | No |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| sessionToken | SortOrder | No |
| expires | SortOrder | No |
| userId | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| sessionToken | String | No |
| AND | SessionWhereInput | SessionWhereInput[] | No |
| OR | SessionWhereInput[] | No |
| NOT | SessionWhereInput | SessionWhereInput[] | No |
| expires | DateTimeFilter | DateTime | No |
| userId | StringFilter | String | No |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| sessionToken | SortOrder | No |
| expires | SortOrder | No |
| userId | SortOrder | No |
| _count | SessionCountOrderByAggregateInput | No |
| _max | SessionMaxOrderByAggregateInput | No |
| _min | SessionMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SessionScalarWhereWithAggregatesInput | SessionScalarWhereWithAggregatesInput[] | No |
| OR | SessionScalarWhereWithAggregatesInput[] | No |
| NOT | SessionScalarWhereWithAggregatesInput | SessionScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| sessionToken | StringWithAggregatesFilter | String | No |
| expires | DateTimeWithAggregatesFilter | DateTime | No |
| userId | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserWhereInput | UserWhereInput[] | No |
| OR | UserWhereInput[] | No |
| NOT | UserWhereInput | UserWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringFilter | String | No |
| screen_name | StringFilter | String | No |
| location | StringNullableFilter | String | Null | Yes |
| url | StringNullableFilter | String | Null | Yes |
| description | StringNullableFilter | String | Null | Yes |
| detail | StringNullableFilter | String | Null | Yes |
| protected | BoolFilter | Boolean | No |
| verified | BoolFilter | Boolean | No |
| StringNullableFilter | String | Null | Yes | |
| emailVerified | DateTimeNullableFilter | DateTime | Null | Yes |
| google_id | StringNullableFilter | String | Null | Yes |
| google_username | StringNullableFilter | String | Null | Yes |
| google_email | StringNullableFilter | String | Null | Yes |
| discord_id | StringNullableFilter | String | Null | Yes |
| discord_username | StringNullableFilter | String | Null | Yes |
| discord_email | StringNullableFilter | String | Null | Yes |
| twitter_id | StringNullableFilter | String | Null | Yes |
| twitter_username | StringNullableFilter | String | Null | Yes |
| twitter_email | StringNullableFilter | String | Null | Yes |
| image | StringNullableFilter | String | Null | Yes |
| password | StringNullableFilter | String | Null | Yes |
| role | EnumUserRoleFilter | UserRole | No |
| created_at | DateTimeFilter | DateTime | No |
| followers_count | IntFilter | Int | No |
| friends_count | IntFilter | Int | No |
| favorites_count | IntFilter | Int | No |
| statuses_count | IntFilter | Int | No |
| reputation_count | FloatFilter | Float | No |
| normalized_reputation | IntFilter | Int | No |
| profile_banner_url | StringNullableFilter | String | Null | Yes |
| profile_image_url | StringNullableFilter | String | Null | Yes |
| evm_address | StringNullableFilter | String | Null | Yes |
| bech32_address | StringNullableFilter | String | Null | Yes |
| pinned_tweet_id | StringNullableFilter | String | Null | Yes |
| cryptoLoginNonce | CryptoLoginNonceNullableRelationFilter | CryptoLoginNonceWhereInput | Null | Yes |
| accounts | AccountListRelationFilter | No |
| sessions | SessionListRelationFilter | No |
| tweets | TweetListRelationFilter | No |
| likes | LikeListRelationFilter | No |
| reputations | ReputationListRelationFilter | No |
| votes | VoteListRelationFilter | No |
| followers | FollowerListRelationFilter | No |
| following | FollowerListRelationFilter | No |
| retweets | RetweetListRelationFilter | No |
| bookmarks | BookmarkListRelationFilter | No |
| sent_messages | MessageListRelationFilter | No |
| received_messages | MessageListRelationFilter | No |
| conversations | ConversationListRelationFilter | No |
| pinned_tweet | TweetNullableRelationFilter | TweetWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| screen_name | String | No |
| String | No | |
| google_id | String | No |
| google_username | String | No |
| google_email | String | No |
| discord_id | String | No |
| discord_username | String | No |
| discord_email | String | No |
| twitter_id | String | No |
| twitter_username | String | No |
| twitter_email | String | No |
| evm_address | String | No |
| bech32_address | String | No |
| AND | UserWhereInput | UserWhereInput[] | No |
| OR | UserWhereInput[] | No |
| NOT | UserWhereInput | UserWhereInput[] | No |
| name | StringFilter | String | No |
| location | StringNullableFilter | String | Null | Yes |
| url | StringNullableFilter | String | Null | Yes |
| description | StringNullableFilter | String | Null | Yes |
| detail | StringNullableFilter | String | Null | Yes |
| protected | BoolFilter | Boolean | No |
| verified | BoolFilter | Boolean | No |
| emailVerified | DateTimeNullableFilter | DateTime | Null | Yes |
| image | StringNullableFilter | String | Null | Yes |
| password | StringNullableFilter | String | Null | Yes |
| role | EnumUserRoleFilter | UserRole | No |
| created_at | DateTimeFilter | DateTime | No |
| followers_count | IntFilter | Int | No |
| friends_count | IntFilter | Int | No |
| favorites_count | IntFilter | Int | No |
| statuses_count | IntFilter | Int | No |
| reputation_count | FloatFilter | Float | No |
| normalized_reputation | IntFilter | Int | No |
| profile_banner_url | StringNullableFilter | String | Null | Yes |
| profile_image_url | StringNullableFilter | String | Null | Yes |
| pinned_tweet_id | StringNullableFilter | String | Null | Yes |
| cryptoLoginNonce | CryptoLoginNonceNullableRelationFilter | CryptoLoginNonceWhereInput | Null | Yes |
| accounts | AccountListRelationFilter | No |
| sessions | SessionListRelationFilter | No |
| tweets | TweetListRelationFilter | No |
| likes | LikeListRelationFilter | No |
| reputations | ReputationListRelationFilter | No |
| votes | VoteListRelationFilter | No |
| followers | FollowerListRelationFilter | No |
| following | FollowerListRelationFilter | No |
| retweets | RetweetListRelationFilter | No |
| bookmarks | BookmarkListRelationFilter | No |
| sent_messages | MessageListRelationFilter | No |
| received_messages | MessageListRelationFilter | No |
| conversations | ConversationListRelationFilter | No |
| pinned_tweet | TweetNullableRelationFilter | TweetWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | FollowerWhereInput | FollowerWhereInput[] | No |
| OR | FollowerWhereInput[] | No |
| NOT | FollowerWhereInput | FollowerWhereInput[] | No |
| id | StringFilter | String | No |
| follower_id | StringFilter | String | No |
| followed_id | StringFilter | String | No |
| created_at | DateTimeFilter | DateTime | No |
| follower | UserRelationFilter | UserWhereInput | No |
| followed | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| follower_id | SortOrder | No |
| followed_id | SortOrder | No |
| created_at | SortOrder | No |
| follower | UserOrderByWithRelationInput | No |
| followed | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | FollowerWhereInput | FollowerWhereInput[] | No |
| OR | FollowerWhereInput[] | No |
| NOT | FollowerWhereInput | FollowerWhereInput[] | No |
| follower_id | StringFilter | String | No |
| followed_id | StringFilter | String | No |
| created_at | DateTimeFilter | DateTime | No |
| follower | UserRelationFilter | UserWhereInput | No |
| followed | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| follower_id | SortOrder | No |
| followed_id | SortOrder | No |
| created_at | SortOrder | No |
| _count | FollowerCountOrderByAggregateInput | No |
| _max | FollowerMaxOrderByAggregateInput | No |
| _min | FollowerMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FollowerScalarWhereWithAggregatesInput | FollowerScalarWhereWithAggregatesInput[] | No |
| OR | FollowerScalarWhereWithAggregatesInput[] | No |
| NOT | FollowerScalarWhereWithAggregatesInput | FollowerScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| follower_id | StringWithAggregatesFilter | String | No |
| followed_id | StringWithAggregatesFilter | String | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TransactionWhereInput | TransactionWhereInput[] | No |
| OR | TransactionWhereInput[] | No |
| NOT | TransactionWhereInput | TransactionWhereInput[] | No |
| id | StringFilter | String | No |
| user_id | StringFilter | String | No |
| follower_id | StringFilter | String | No |
| balance | FloatFilter | Float | No |
| amount | FloatFilter | Float | No |
| description | StringFilter | String | No |
| created_at | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| follower_id | SortOrder | No |
| balance | SortOrder | No |
| amount | SortOrder | No |
| description | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | TransactionWhereInput | TransactionWhereInput[] | No |
| OR | TransactionWhereInput[] | No |
| NOT | TransactionWhereInput | TransactionWhereInput[] | No |
| user_id | StringFilter | String | No |
| follower_id | StringFilter | String | No |
| balance | FloatFilter | Float | No |
| amount | FloatFilter | Float | No |
| description | StringFilter | String | No |
| created_at | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| follower_id | SortOrder | No |
| balance | SortOrder | No |
| amount | SortOrder | No |
| description | SortOrder | No |
| created_at | SortOrder | No |
| _count | TransactionCountOrderByAggregateInput | No |
| _avg | TransactionAvgOrderByAggregateInput | No |
| _max | TransactionMaxOrderByAggregateInput | No |
| _min | TransactionMinOrderByAggregateInput | No |
| _sum | TransactionSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TransactionScalarWhereWithAggregatesInput | TransactionScalarWhereWithAggregatesInput[] | No |
| OR | TransactionScalarWhereWithAggregatesInput[] | No |
| NOT | TransactionScalarWhereWithAggregatesInput | TransactionScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| user_id | StringWithAggregatesFilter | String | No |
| follower_id | StringWithAggregatesFilter | String | No |
| balance | FloatWithAggregatesFilter | Float | No |
| amount | FloatWithAggregatesFilter | Float | No |
| description | StringWithAggregatesFilter | String | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TweetWhereInput | TweetWhereInput[] | No |
| OR | TweetWhereInput[] | No |
| NOT | TweetWhereInput | TweetWhereInput[] | No |
| id | StringFilter | String | No |
| text | StringNullableFilter | String | Null | Yes |
| source | StringFilter | String | No |
| in_reply_to_user_id | StringNullableFilter | String | Null | Yes |
| in_reply_to_screen_name | StringNullableFilter | String | Null | Yes |
| is_quote_status | BoolFilter | Boolean | No |
| quoted_status_id | StringNullableFilter | String | Null | Yes |
| quote_count | IntFilter | Int | No |
| reply_count | IntFilter | Int | No |
| retweet_count | IntFilter | Int | No |
| favorite_count | IntFilter | Int | No |
| vote_count | IntFilter | Int | No |
| possibly_sensitive | BoolFilter | Boolean | No |
| lang | StringFilter | String | No |
| created_at | DateTimeFilter | DateTime | No |
| author_id | StringFilter | String | No |
| quoted_tweet_id | StringNullableFilter | String | Null | Yes |
| in_reply_to_status_id | StringNullableFilter | String | Null | Yes |
| author | UserRelationFilter | UserWhereInput | No |
| media | MediaListRelationFilter | No |
| likes | LikeListRelationFilter | No |
| votes | VoteListRelationFilter | No |
| retweets | RetweetListRelationFilter | No |
| quotes | TweetListRelationFilter | No |
| quoted_tweet | TweetNullableRelationFilter | TweetWhereInput | Null | Yes |
| comments | TweetListRelationFilter | No |
| tweet_comment | TweetNullableRelationFilter | TweetWhereInput | Null | Yes |
| bookmarks | BookmarkListRelationFilter | No |
| pinned_by_users | UserListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | TweetWhereInput | TweetWhereInput[] | No |
| OR | TweetWhereInput[] | No |
| NOT | TweetWhereInput | TweetWhereInput[] | No |
| text | StringNullableFilter | String | Null | Yes |
| source | StringFilter | String | No |
| in_reply_to_user_id | StringNullableFilter | String | Null | Yes |
| in_reply_to_screen_name | StringNullableFilter | String | Null | Yes |
| is_quote_status | BoolFilter | Boolean | No |
| quoted_status_id | StringNullableFilter | String | Null | Yes |
| quote_count | IntFilter | Int | No |
| reply_count | IntFilter | Int | No |
| retweet_count | IntFilter | Int | No |
| favorite_count | IntFilter | Int | No |
| vote_count | IntFilter | Int | No |
| possibly_sensitive | BoolFilter | Boolean | No |
| lang | StringFilter | String | No |
| created_at | DateTimeFilter | DateTime | No |
| author_id | StringFilter | String | No |
| quoted_tweet_id | StringNullableFilter | String | Null | Yes |
| in_reply_to_status_id | StringNullableFilter | String | Null | Yes |
| author | UserRelationFilter | UserWhereInput | No |
| media | MediaListRelationFilter | No |
| likes | LikeListRelationFilter | No |
| votes | VoteListRelationFilter | No |
| retweets | RetweetListRelationFilter | No |
| quotes | TweetListRelationFilter | No |
| quoted_tweet | TweetNullableRelationFilter | TweetWhereInput | Null | Yes |
| comments | TweetListRelationFilter | No |
| tweet_comment | TweetNullableRelationFilter | TweetWhereInput | Null | Yes |
| bookmarks | BookmarkListRelationFilter | No |
| pinned_by_users | UserListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| text | SortOrder | SortOrderInput | No |
| source | SortOrder | No |
| in_reply_to_user_id | SortOrder | SortOrderInput | No |
| in_reply_to_screen_name | SortOrder | SortOrderInput | No |
| is_quote_status | SortOrder | No |
| quoted_status_id | SortOrder | SortOrderInput | No |
| quote_count | SortOrder | No |
| reply_count | SortOrder | No |
| retweet_count | SortOrder | No |
| favorite_count | SortOrder | No |
| vote_count | SortOrder | No |
| possibly_sensitive | SortOrder | No |
| lang | SortOrder | No |
| created_at | SortOrder | No |
| author_id | SortOrder | No |
| quoted_tweet_id | SortOrder | SortOrderInput | No |
| in_reply_to_status_id | SortOrder | SortOrderInput | No |
| _count | TweetCountOrderByAggregateInput | No |
| _avg | TweetAvgOrderByAggregateInput | No |
| _max | TweetMaxOrderByAggregateInput | No |
| _min | TweetMinOrderByAggregateInput | No |
| _sum | TweetSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | MediaWhereInput | MediaWhereInput[] | No |
| OR | MediaWhereInput[] | No |
| NOT | MediaWhereInput | MediaWhereInput[] | No |
| id | StringFilter | String | No |
| media_url | StringFilter | String | No |
| media_type | StringFilter | String | No |
| media_path | StringFilter | String | No |
| tweet_id | StringNullableFilter | String | Null | Yes |
| message_id | StringNullableFilter | String | Null | Yes |
| tweet | TweetNullableRelationFilter | TweetWhereInput | Null | Yes |
| Message | MessageNullableRelationFilter | MessageWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| media_url | SortOrder | No |
| media_type | SortOrder | No |
| media_path | SortOrder | No |
| tweet_id | SortOrder | SortOrderInput | No |
| message_id | SortOrder | SortOrderInput | No |
| tweet | TweetOrderByWithRelationInput | No |
| Message | MessageOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | MediaWhereInput | MediaWhereInput[] | No |
| OR | MediaWhereInput[] | No |
| NOT | MediaWhereInput | MediaWhereInput[] | No |
| media_url | StringFilter | String | No |
| media_type | StringFilter | String | No |
| media_path | StringFilter | String | No |
| tweet_id | StringNullableFilter | String | Null | Yes |
| message_id | StringNullableFilter | String | Null | Yes |
| tweet | TweetNullableRelationFilter | TweetWhereInput | Null | Yes |
| Message | MessageNullableRelationFilter | MessageWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| media_url | SortOrder | No |
| media_type | SortOrder | No |
| media_path | SortOrder | No |
| tweet_id | SortOrder | SortOrderInput | No |
| message_id | SortOrder | SortOrderInput | No |
| _count | MediaCountOrderByAggregateInput | No |
| _max | MediaMaxOrderByAggregateInput | No |
| _min | MediaMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | MediaScalarWhereWithAggregatesInput | MediaScalarWhereWithAggregatesInput[] | No |
| OR | MediaScalarWhereWithAggregatesInput[] | No |
| NOT | MediaScalarWhereWithAggregatesInput | MediaScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| media_url | StringWithAggregatesFilter | String | No |
| media_type | StringWithAggregatesFilter | String | No |
| media_path | StringWithAggregatesFilter | String | No |
| tweet_id | StringNullableWithAggregatesFilter | String | Null | Yes |
| message_id | StringNullableWithAggregatesFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| AND | LikeWhereInput | LikeWhereInput[] | No |
| OR | LikeWhereInput[] | No |
| NOT | LikeWhereInput | LikeWhereInput[] | No |
| id | StringFilter | String | No |
| tweet_id | StringFilter | String | No |
| user_id | StringFilter | String | No |
| created_at | DateTimeFilter | DateTime | No |
| tweet | TweetRelationFilter | TweetWhereInput | No |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| tweet_id | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| tweet | TweetOrderByWithRelationInput | No |
| user | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | LikeWhereInput | LikeWhereInput[] | No |
| OR | LikeWhereInput[] | No |
| NOT | LikeWhereInput | LikeWhereInput[] | No |
| tweet_id | StringFilter | String | No |
| user_id | StringFilter | String | No |
| created_at | DateTimeFilter | DateTime | No |
| tweet | TweetRelationFilter | TweetWhereInput | No |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| tweet_id | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| _count | LikeCountOrderByAggregateInput | No |
| _max | LikeMaxOrderByAggregateInput | No |
| _min | LikeMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | LikeScalarWhereWithAggregatesInput | LikeScalarWhereWithAggregatesInput[] | No |
| OR | LikeScalarWhereWithAggregatesInput[] | No |
| NOT | LikeScalarWhereWithAggregatesInput | LikeScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| tweet_id | StringWithAggregatesFilter | String | No |
| user_id | StringWithAggregatesFilter | String | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ReputationWhereInput | ReputationWhereInput[] | No |
| OR | ReputationWhereInput[] | No |
| NOT | ReputationWhereInput | ReputationWhereInput[] | No |
| id | StringFilter | String | No |
| user_id | StringFilter | String | No |
| session_owner_id | StringFilter | String | No |
| reputation_status | StringFilter | String | No |
| created_at | DateTimeFilter | DateTime | No |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| session_owner_id | SortOrder | No |
| reputation_status | SortOrder | No |
| created_at | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | ReputationWhereInput | ReputationWhereInput[] | No |
| OR | ReputationWhereInput[] | No |
| NOT | ReputationWhereInput | ReputationWhereInput[] | No |
| user_id | StringFilter | String | No |
| session_owner_id | StringFilter | String | No |
| reputation_status | StringFilter | String | No |
| created_at | DateTimeFilter | DateTime | No |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| session_owner_id | SortOrder | No |
| reputation_status | SortOrder | No |
| created_at | SortOrder | No |
| _count | ReputationCountOrderByAggregateInput | No |
| _max | ReputationMaxOrderByAggregateInput | No |
| _min | ReputationMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ReputationScalarWhereWithAggregatesInput | ReputationScalarWhereWithAggregatesInput[] | No |
| OR | ReputationScalarWhereWithAggregatesInput[] | No |
| NOT | ReputationScalarWhereWithAggregatesInput | ReputationScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| user_id | StringWithAggregatesFilter | String | No |
| session_owner_id | StringWithAggregatesFilter | String | No |
| reputation_status | StringWithAggregatesFilter | String | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | VoteWhereInput | VoteWhereInput[] | No |
| OR | VoteWhereInput[] | No |
| NOT | VoteWhereInput | VoteWhereInput[] | No |
| id | StringFilter | String | No |
| tweet_id | StringFilter | String | No |
| user_id | StringFilter | String | No |
| vote_status | StringFilter | String | No |
| created_at | DateTimeFilter | DateTime | No |
| tweet | TweetRelationFilter | TweetWhereInput | No |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| tweet_id | SortOrder | No |
| user_id | SortOrder | No |
| vote_status | SortOrder | No |
| created_at | SortOrder | No |
| tweet | TweetOrderByWithRelationInput | No |
| user | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | VoteWhereInput | VoteWhereInput[] | No |
| OR | VoteWhereInput[] | No |
| NOT | VoteWhereInput | VoteWhereInput[] | No |
| tweet_id | StringFilter | String | No |
| user_id | StringFilter | String | No |
| vote_status | StringFilter | String | No |
| created_at | DateTimeFilter | DateTime | No |
| tweet | TweetRelationFilter | TweetWhereInput | No |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| tweet_id | SortOrder | No |
| user_id | SortOrder | No |
| vote_status | SortOrder | No |
| created_at | SortOrder | No |
| _count | VoteCountOrderByAggregateInput | No |
| _max | VoteMaxOrderByAggregateInput | No |
| _min | VoteMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | VoteScalarWhereWithAggregatesInput | VoteScalarWhereWithAggregatesInput[] | No |
| OR | VoteScalarWhereWithAggregatesInput[] | No |
| NOT | VoteScalarWhereWithAggregatesInput | VoteScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| tweet_id | StringWithAggregatesFilter | String | No |
| user_id | StringWithAggregatesFilter | String | No |
| vote_status | StringWithAggregatesFilter | String | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RetweetWhereInput | RetweetWhereInput[] | No |
| OR | RetweetWhereInput[] | No |
| NOT | RetweetWhereInput | RetweetWhereInput[] | No |
| id | StringFilter | String | No |
| tweet_id | StringFilter | String | No |
| user_id | StringFilter | String | No |
| created_at | DateTimeFilter | DateTime | No |
| tweet | TweetRelationFilter | TweetWhereInput | No |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| tweet_id | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| tweet | TweetOrderByWithRelationInput | No |
| user | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | RetweetWhereInput | RetweetWhereInput[] | No |
| OR | RetweetWhereInput[] | No |
| NOT | RetweetWhereInput | RetweetWhereInput[] | No |
| tweet_id | StringFilter | String | No |
| user_id | StringFilter | String | No |
| created_at | DateTimeFilter | DateTime | No |
| tweet | TweetRelationFilter | TweetWhereInput | No |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| tweet_id | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| _count | RetweetCountOrderByAggregateInput | No |
| _max | RetweetMaxOrderByAggregateInput | No |
| _min | RetweetMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RetweetScalarWhereWithAggregatesInput | RetweetScalarWhereWithAggregatesInput[] | No |
| OR | RetweetScalarWhereWithAggregatesInput[] | No |
| NOT | RetweetScalarWhereWithAggregatesInput | RetweetScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| tweet_id | StringWithAggregatesFilter | String | No |
| user_id | StringWithAggregatesFilter | String | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BookmarkWhereInput | BookmarkWhereInput[] | No |
| OR | BookmarkWhereInput[] | No |
| NOT | BookmarkWhereInput | BookmarkWhereInput[] | No |
| id | StringFilter | String | No |
| tweet_id | StringFilter | String | No |
| user_id | StringFilter | String | No |
| created_at | DateTimeFilter | DateTime | No |
| tweet | TweetRelationFilter | TweetWhereInput | No |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| tweet_id | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| tweet | TweetOrderByWithRelationInput | No |
| user | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | BookmarkWhereInput | BookmarkWhereInput[] | No |
| OR | BookmarkWhereInput[] | No |
| NOT | BookmarkWhereInput | BookmarkWhereInput[] | No |
| tweet_id | StringFilter | String | No |
| user_id | StringFilter | String | No |
| created_at | DateTimeFilter | DateTime | No |
| tweet | TweetRelationFilter | TweetWhereInput | No |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| tweet_id | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| _count | BookmarkCountOrderByAggregateInput | No |
| _max | BookmarkMaxOrderByAggregateInput | No |
| _min | BookmarkMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BookmarkScalarWhereWithAggregatesInput | BookmarkScalarWhereWithAggregatesInput[] | No |
| OR | BookmarkScalarWhereWithAggregatesInput[] | No |
| NOT | BookmarkScalarWhereWithAggregatesInput | BookmarkScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| tweet_id | StringWithAggregatesFilter | String | No |
| user_id | StringWithAggregatesFilter | String | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | HashtagWhereInput | HashtagWhereInput[] | No |
| OR | HashtagWhereInput[] | No |
| NOT | HashtagWhereInput | HashtagWhereInput[] | No |
| id | StringFilter | String | No |
| text | StringFilter | String | No |
| hashtag | StringFilter | String | No |
| score | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| text | SortOrder | No |
| hashtag | SortOrder | No |
| score | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| hashtag | String | No |
| AND | HashtagWhereInput | HashtagWhereInput[] | No |
| OR | HashtagWhereInput[] | No |
| NOT | HashtagWhereInput | HashtagWhereInput[] | No |
| text | StringFilter | String | No |
| score | IntFilter | Int | No |
| created_at | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| text | SortOrder | No |
| hashtag | SortOrder | No |
| score | SortOrder | No |
| created_at | SortOrder | No |
| _count | HashtagCountOrderByAggregateInput | No |
| _avg | HashtagAvgOrderByAggregateInput | No |
| _max | HashtagMaxOrderByAggregateInput | No |
| _min | HashtagMinOrderByAggregateInput | No |
| _sum | HashtagSumOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | HashtagScalarWhereWithAggregatesInput | HashtagScalarWhereWithAggregatesInput[] | No |
| OR | HashtagScalarWhereWithAggregatesInput[] | No |
| NOT | HashtagScalarWhereWithAggregatesInput | HashtagScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| text | StringWithAggregatesFilter | String | No |
| hashtag | StringWithAggregatesFilter | String | No |
| score | IntWithAggregatesFilter | Int | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | MessageWhereInput | MessageWhereInput[] | No |
| OR | MessageWhereInput[] | No |
| NOT | MessageWhereInput | MessageWhereInput[] | No |
| id | StringFilter | String | No |
| text | StringNullableFilter | String | Null | Yes |
| image | StringNullableFilter | String | Null | Yes |
| created_at | DateTimeFilter | DateTime | No |
| sender_id | StringFilter | String | No |
| receiver_id | StringFilter | String | No |
| conversation_id | StringFilter | String | No |
| sender | UserRelationFilter | UserWhereInput | No |
| receiver | UserRelationFilter | UserWhereInput | No |
| conversation | ConversationRelationFilter | ConversationWhereInput | No |
| media | MediaListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| text | SortOrder | SortOrderInput | No |
| image | SortOrder | SortOrderInput | No |
| created_at | SortOrder | No |
| sender_id | SortOrder | No |
| receiver_id | SortOrder | No |
| conversation_id | SortOrder | No |
| sender | UserOrderByWithRelationInput | No |
| receiver | UserOrderByWithRelationInput | No |
| conversation | ConversationOrderByWithRelationInput | No |
| media | MediaOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | MessageWhereInput | MessageWhereInput[] | No |
| OR | MessageWhereInput[] | No |
| NOT | MessageWhereInput | MessageWhereInput[] | No |
| text | StringNullableFilter | String | Null | Yes |
| image | StringNullableFilter | String | Null | Yes |
| created_at | DateTimeFilter | DateTime | No |
| sender_id | StringFilter | String | No |
| receiver_id | StringFilter | String | No |
| conversation_id | StringFilter | String | No |
| sender | UserRelationFilter | UserWhereInput | No |
| receiver | UserRelationFilter | UserWhereInput | No |
| conversation | ConversationRelationFilter | ConversationWhereInput | No |
| media | MediaListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| text | SortOrder | SortOrderInput | No |
| image | SortOrder | SortOrderInput | No |
| created_at | SortOrder | No |
| sender_id | SortOrder | No |
| receiver_id | SortOrder | No |
| conversation_id | SortOrder | No |
| _count | MessageCountOrderByAggregateInput | No |
| _max | MessageMaxOrderByAggregateInput | No |
| _min | MessageMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | MessageScalarWhereWithAggregatesInput | MessageScalarWhereWithAggregatesInput[] | No |
| OR | MessageScalarWhereWithAggregatesInput[] | No |
| NOT | MessageScalarWhereWithAggregatesInput | MessageScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| text | StringNullableWithAggregatesFilter | String | Null | Yes |
| image | StringNullableWithAggregatesFilter | String | Null | Yes |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| sender_id | StringWithAggregatesFilter | String | No |
| receiver_id | StringWithAggregatesFilter | String | No |
| conversation_id | StringWithAggregatesFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ConversationWhereInput | ConversationWhereInput[] | No |
| OR | ConversationWhereInput[] | No |
| NOT | ConversationWhereInput | ConversationWhereInput[] | No |
| id | StringFilter | String | No |
| created_at | DateTimeFilter | DateTime | No |
| users | UserListRelationFilter | No |
| messages | MessageListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| users | UserOrderByRelationAggregateInput | No |
| messages | MessageOrderByRelationAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| AND | ConversationWhereInput | ConversationWhereInput[] | No |
| OR | ConversationWhereInput[] | No |
| NOT | ConversationWhereInput | ConversationWhereInput[] | No |
| created_at | DateTimeFilter | DateTime | No |
| users | UserListRelationFilter | No |
| messages | MessageListRelationFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| created_at | SortOrder | No |
| _count | ConversationCountOrderByAggregateInput | No |
| _max | ConversationMaxOrderByAggregateInput | No |
| _min | ConversationMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ConversationScalarWhereWithAggregatesInput | ConversationScalarWhereWithAggregatesInput[] | No |
| OR | ConversationScalarWhereWithAggregatesInput[] | No |
| NOT | ConversationScalarWhereWithAggregatesInput | ConversationScalarWhereWithAggregatesInput[] | No |
| id | StringWithAggregatesFilter | String | No |
| created_at | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CryptoLoginNonceWhereInput | CryptoLoginNonceWhereInput[] | No |
| OR | CryptoLoginNonceWhereInput[] | No |
| NOT | CryptoLoginNonceWhereInput | CryptoLoginNonceWhereInput[] | No |
| userId | StringFilter | String | No |
| nonce | StringFilter | String | No |
| expires | DateTimeFilter | DateTime | No |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| nonce | SortOrder | No |
| expires | SortOrder | No |
| user | UserOrderByWithRelationInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| AND | CryptoLoginNonceWhereInput | CryptoLoginNonceWhereInput[] | No |
| OR | CryptoLoginNonceWhereInput[] | No |
| NOT | CryptoLoginNonceWhereInput | CryptoLoginNonceWhereInput[] | No |
| nonce | StringFilter | String | No |
| expires | DateTimeFilter | DateTime | No |
| user | UserRelationFilter | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| nonce | SortOrder | No |
| expires | SortOrder | No |
| _count | CryptoLoginNonceCountOrderByAggregateInput | No |
| _max | CryptoLoginNonceMaxOrderByAggregateInput | No |
| _min | CryptoLoginNonceMinOrderByAggregateInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | CryptoLoginNonceScalarWhereWithAggregatesInput | CryptoLoginNonceScalarWhereWithAggregatesInput[] | No |
| OR | CryptoLoginNonceScalarWhereWithAggregatesInput[] | No |
| NOT | CryptoLoginNonceScalarWhereWithAggregatesInput | CryptoLoginNonceScalarWhereWithAggregatesInput[] | No |
| userId | StringWithAggregatesFilter | String | No |
| nonce | StringWithAggregatesFilter | String | No |
| expires | DateTimeWithAggregatesFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | No |
| token | String | No |
| expires | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | No |
| token | String | No |
| expires | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | StringFieldUpdateOperationsInput | No |
| token | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | StringFieldUpdateOperationsInput | No |
| token | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | No |
| token | String | No |
| expires | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | StringFieldUpdateOperationsInput | No |
| token | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | StringFieldUpdateOperationsInput | No |
| token | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| provider | String | No |
| providerAccountId | String | No |
| refresh_token | String | Null | Yes |
| access_token | String | Null | Yes |
| oath_token | String | Null | Yes |
| oauth_token_secret | String | Null | Yes |
| expires_at | Int | Null | Yes |
| token_type | String | Null | Yes |
| scope | String | Null | Yes |
| id_token | String | Null | Yes |
| session_state | String | Null | Yes |
| user | UserCreateNestedOneWithoutAccountsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| userId | String | No |
| type | String | No |
| provider | String | No |
| providerAccountId | String | No |
| refresh_token | String | Null | Yes |
| access_token | String | Null | Yes |
| oath_token | String | Null | Yes |
| oauth_token_secret | String | Null | Yes |
| expires_at | Int | Null | Yes |
| token_type | String | Null | Yes |
| scope | String | Null | Yes |
| id_token | String | Null | Yes |
| session_state | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| provider | String | StringFieldUpdateOperationsInput | No |
| providerAccountId | String | StringFieldUpdateOperationsInput | No |
| refresh_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| access_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| oath_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| oauth_token_secret | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| expires_at | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| token_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| session_state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| user | UserUpdateOneRequiredWithoutAccountsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| provider | String | StringFieldUpdateOperationsInput | No |
| providerAccountId | String | StringFieldUpdateOperationsInput | No |
| refresh_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| access_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| oath_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| oauth_token_secret | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| expires_at | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| token_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| session_state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| userId | String | No |
| type | String | No |
| provider | String | No |
| providerAccountId | String | No |
| refresh_token | String | Null | Yes |
| access_token | String | Null | Yes |
| oath_token | String | Null | Yes |
| oauth_token_secret | String | Null | Yes |
| expires_at | Int | Null | Yes |
| token_type | String | Null | Yes |
| scope | String | Null | Yes |
| id_token | String | Null | Yes |
| session_state | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| provider | String | StringFieldUpdateOperationsInput | No |
| providerAccountId | String | StringFieldUpdateOperationsInput | No |
| refresh_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| access_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| oath_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| oauth_token_secret | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| expires_at | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| token_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| session_state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| provider | String | StringFieldUpdateOperationsInput | No |
| providerAccountId | String | StringFieldUpdateOperationsInput | No |
| refresh_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| access_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| oath_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| oauth_token_secret | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| expires_at | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| token_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| session_state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| sessionToken | String | No |
| expires | DateTime | No |
| user | UserCreateNestedOneWithoutSessionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| sessionToken | String | No |
| expires | DateTime | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| sessionToken | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutSessionsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| sessionToken | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| sessionToken | String | No |
| expires | DateTime | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| sessionToken | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| sessionToken | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| userId | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | Null | Yes |
| url | String | Null | Yes |
| description | String | Null | Yes |
| detail | String | Null | Yes |
| protected | Boolean | No |
| verified | Boolean | No |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| google_id | String | Null | Yes |
| google_username | String | Null | Yes |
| google_email | String | Null | Yes |
| discord_id | String | Null | Yes |
| discord_username | String | Null | Yes |
| discord_email | String | Null | Yes |
| twitter_id | String | Null | Yes |
| twitter_username | String | Null | Yes |
| twitter_email | String | Null | Yes |
| image | String | Null | Yes |
| password | String | Null | Yes |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | Null | Yes |
| profile_image_url | String | Null | Yes |
| evm_address | String | Null | Yes |
| bech32_address | String | Null | Yes |
| cryptoLoginNonce | CryptoLoginNonceCreateNestedOneWithoutUserInput | No |
| accounts | AccountCreateNestedManyWithoutUserInput | No |
| sessions | SessionCreateNestedManyWithoutUserInput | No |
| tweets | TweetCreateNestedManyWithoutAuthorInput | No |
| likes | LikeCreateNestedManyWithoutUserInput | No |
| reputations | ReputationCreateNestedManyWithoutUserInput | No |
| votes | VoteCreateNestedManyWithoutUserInput | No |
| followers | FollowerCreateNestedManyWithoutFollowerInput | No |
| following | FollowerCreateNestedManyWithoutFollowedInput | No |
| retweets | RetweetCreateNestedManyWithoutUserInput | No |
| bookmarks | BookmarkCreateNestedManyWithoutUserInput | No |
| sent_messages | MessageCreateNestedManyWithoutReceiverInput | No |
| received_messages | MessageCreateNestedManyWithoutSenderInput | No |
| conversations | ConversationCreateNestedManyWithoutUsersInput | No |
| pinned_tweet | TweetCreateNestedOneWithoutPinned_by_usersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | Null | Yes |
| url | String | Null | Yes |
| description | String | Null | Yes |
| detail | String | Null | Yes |
| protected | Boolean | No |
| verified | Boolean | No |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| google_id | String | Null | Yes |
| google_username | String | Null | Yes |
| google_email | String | Null | Yes |
| discord_id | String | Null | Yes |
| discord_username | String | Null | Yes |
| discord_email | String | Null | Yes |
| twitter_id | String | Null | Yes |
| twitter_username | String | Null | Yes |
| twitter_email | String | Null | Yes |
| image | String | Null | Yes |
| password | String | Null | Yes |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | Null | Yes |
| profile_image_url | String | Null | Yes |
| evm_address | String | Null | Yes |
| bech32_address | String | Null | Yes |
| pinned_tweet_id | String | Null | Yes |
| cryptoLoginNonce | CryptoLoginNonceUncheckedCreateNestedOneWithoutUserInput | No |
| accounts | AccountUncheckedCreateNestedManyWithoutUserInput | No |
| sessions | SessionUncheckedCreateNestedManyWithoutUserInput | No |
| tweets | TweetUncheckedCreateNestedManyWithoutAuthorInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutUserInput | No |
| reputations | ReputationUncheckedCreateNestedManyWithoutUserInput | No |
| votes | VoteUncheckedCreateNestedManyWithoutUserInput | No |
| followers | FollowerUncheckedCreateNestedManyWithoutFollowerInput | No |
| following | FollowerUncheckedCreateNestedManyWithoutFollowedInput | No |
| retweets | RetweetUncheckedCreateNestedManyWithoutUserInput | No |
| bookmarks | BookmarkUncheckedCreateNestedManyWithoutUserInput | No |
| sent_messages | MessageUncheckedCreateNestedManyWithoutReceiverInput | No |
| received_messages | MessageUncheckedCreateNestedManyWithoutSenderInput | No |
| conversations | ConversationUncheckedCreateNestedManyWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | Null | Yes |
| url | String | Null | Yes |
| description | String | Null | Yes |
| detail | String | Null | Yes |
| protected | Boolean | No |
| verified | Boolean | No |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| google_id | String | Null | Yes |
| google_username | String | Null | Yes |
| google_email | String | Null | Yes |
| discord_id | String | Null | Yes |
| discord_username | String | Null | Yes |
| discord_email | String | Null | Yes |
| twitter_id | String | Null | Yes |
| twitter_username | String | Null | Yes |
| twitter_email | String | Null | Yes |
| image | String | Null | Yes |
| password | String | Null | Yes |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | Null | Yes |
| profile_image_url | String | Null | Yes |
| evm_address | String | Null | Yes |
| bech32_address | String | Null | Yes |
| pinned_tweet_id | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| created_at | DateTime | No |
| follower | UserCreateNestedOneWithoutFollowersInput | No |
| followed | UserCreateNestedOneWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| follower_id | String | No |
| followed_id | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| follower | UserUpdateOneRequiredWithoutFollowersNestedInput | No |
| followed | UserUpdateOneRequiredWithoutFollowingNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| follower_id | String | StringFieldUpdateOperationsInput | No |
| followed_id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| follower_id | String | No |
| followed_id | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| follower_id | String | StringFieldUpdateOperationsInput | No |
| followed_id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| user_id | String | No |
| follower_id | String | No |
| balance | Float | No |
| amount | Float | No |
| description | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| user_id | String | No |
| follower_id | String | No |
| balance | Float | No |
| amount | Float | No |
| description | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| user_id | String | StringFieldUpdateOperationsInput | No |
| follower_id | String | StringFieldUpdateOperationsInput | No |
| balance | Float | FloatFieldUpdateOperationsInput | No |
| amount | Float | FloatFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| user_id | String | StringFieldUpdateOperationsInput | No |
| follower_id | String | StringFieldUpdateOperationsInput | No |
| balance | Float | FloatFieldUpdateOperationsInput | No |
| amount | Float | FloatFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| user_id | String | No |
| follower_id | String | No |
| balance | Float | No |
| amount | Float | No |
| description | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| user_id | String | StringFieldUpdateOperationsInput | No |
| follower_id | String | StringFieldUpdateOperationsInput | No |
| balance | Float | FloatFieldUpdateOperationsInput | No |
| amount | Float | FloatFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| user_id | String | StringFieldUpdateOperationsInput | No |
| follower_id | String | StringFieldUpdateOperationsInput | No |
| balance | Float | FloatFieldUpdateOperationsInput | No |
| amount | Float | FloatFieldUpdateOperationsInput | No |
| description | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| source | String | No |
| in_reply_to_user_id | String | Null | Yes |
| in_reply_to_screen_name | String | Null | Yes |
| is_quote_status | Boolean | No |
| quoted_status_id | String | Null | Yes |
| quote_count | Int | No |
| reply_count | Int | No |
| retweet_count | Int | No |
| favorite_count | Int | No |
| vote_count | Int | No |
| possibly_sensitive | Boolean | No |
| lang | String | No |
| created_at | DateTime | No |
| author | UserCreateNestedOneWithoutTweetsInput | No |
| media | MediaCreateNestedManyWithoutTweetInput | No |
| likes | LikeCreateNestedManyWithoutTweetInput | No |
| votes | VoteCreateNestedManyWithoutTweetInput | No |
| retweets | RetweetCreateNestedManyWithoutTweetInput | No |
| quotes | TweetCreateNestedManyWithoutQuoted_tweetInput | No |
| quoted_tweet | TweetCreateNestedOneWithoutQuotesInput | No |
| comments | TweetCreateNestedManyWithoutTweet_commentInput | No |
| tweet_comment | TweetCreateNestedOneWithoutCommentsInput | No |
| bookmarks | BookmarkCreateNestedManyWithoutTweetInput | No |
| pinned_by_users | UserCreateNestedManyWithoutPinned_tweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| source | String | No |
| in_reply_to_user_id | String | Null | Yes |
| in_reply_to_screen_name | String | Null | Yes |
| is_quote_status | Boolean | No |
| quoted_status_id | String | Null | Yes |
| quote_count | Int | No |
| reply_count | Int | No |
| retweet_count | Int | No |
| favorite_count | Int | No |
| vote_count | Int | No |
| possibly_sensitive | Boolean | No |
| lang | String | No |
| created_at | DateTime | No |
| author_id | String | No |
| quoted_tweet_id | String | Null | Yes |
| in_reply_to_status_id | String | Null | Yes |
| media | MediaUncheckedCreateNestedManyWithoutTweetInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutTweetInput | No |
| votes | VoteUncheckedCreateNestedManyWithoutTweetInput | No |
| retweets | RetweetUncheckedCreateNestedManyWithoutTweetInput | No |
| quotes | TweetUncheckedCreateNestedManyWithoutQuoted_tweetInput | No |
| comments | TweetUncheckedCreateNestedManyWithoutTweet_commentInput | No |
| bookmarks | BookmarkUncheckedCreateNestedManyWithoutTweetInput | No |
| pinned_by_users | UserUncheckedCreateNestedManyWithoutPinned_tweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| source | String | No |
| in_reply_to_user_id | String | Null | Yes |
| in_reply_to_screen_name | String | Null | Yes |
| is_quote_status | Boolean | No |
| quoted_status_id | String | Null | Yes |
| quote_count | Int | No |
| reply_count | Int | No |
| retweet_count | Int | No |
| favorite_count | Int | No |
| vote_count | Int | No |
| possibly_sensitive | Boolean | No |
| lang | String | No |
| created_at | DateTime | No |
| author_id | String | No |
| quoted_tweet_id | String | Null | Yes |
| in_reply_to_status_id | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| text | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| source | String | StringFieldUpdateOperationsInput | No |
| in_reply_to_user_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| in_reply_to_screen_name | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| is_quote_status | Boolean | BoolFieldUpdateOperationsInput | No |
| quoted_status_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| quote_count | Int | IntFieldUpdateOperationsInput | No |
| reply_count | Int | IntFieldUpdateOperationsInput | No |
| retweet_count | Int | IntFieldUpdateOperationsInput | No |
| favorite_count | Int | IntFieldUpdateOperationsInput | No |
| vote_count | Int | IntFieldUpdateOperationsInput | No |
| possibly_sensitive | Boolean | BoolFieldUpdateOperationsInput | No |
| lang | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| media_url | String | No |
| media_type | String | No |
| media_path | String | No |
| tweet | TweetCreateNestedOneWithoutMediaInput | No |
| Message | MessageCreateNestedOneWithoutMediaInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| media_url | String | No |
| media_type | String | No |
| media_path | String | No |
| tweet_id | String | Null | Yes |
| message_id | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| media_url | String | StringFieldUpdateOperationsInput | No |
| media_type | String | StringFieldUpdateOperationsInput | No |
| media_path | String | StringFieldUpdateOperationsInput | No |
| tweet | TweetUpdateOneWithoutMediaNestedInput | No |
| Message | MessageUpdateOneWithoutMediaNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| media_url | String | StringFieldUpdateOperationsInput | No |
| media_type | String | StringFieldUpdateOperationsInput | No |
| media_path | String | StringFieldUpdateOperationsInput | No |
| tweet_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| message_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| media_url | String | No |
| media_type | String | No |
| media_path | String | No |
| tweet_id | String | Null | Yes |
| message_id | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| media_url | String | StringFieldUpdateOperationsInput | No |
| media_type | String | StringFieldUpdateOperationsInput | No |
| media_path | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| media_url | String | StringFieldUpdateOperationsInput | No |
| media_type | String | StringFieldUpdateOperationsInput | No |
| media_path | String | StringFieldUpdateOperationsInput | No |
| tweet_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| message_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| created_at | DateTime | No |
| tweet | TweetCreateNestedOneWithoutLikesInput | No |
| user | UserCreateNestedOneWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| tweet_id | String | No |
| user_id | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| tweet | TweetUpdateOneRequiredWithoutLikesNestedInput | No |
| user | UserUpdateOneRequiredWithoutLikesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| tweet_id | String | StringFieldUpdateOperationsInput | No |
| user_id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| tweet_id | String | No |
| user_id | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| tweet_id | String | StringFieldUpdateOperationsInput | No |
| user_id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| session_owner_id | String | No |
| reputation_status | String | No |
| created_at | DateTime | No |
| user | UserCreateNestedOneWithoutReputationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| user_id | String | No |
| session_owner_id | String | No |
| reputation_status | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| session_owner_id | String | StringFieldUpdateOperationsInput | No |
| reputation_status | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutReputationsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| user_id | String | StringFieldUpdateOperationsInput | No |
| session_owner_id | String | StringFieldUpdateOperationsInput | No |
| reputation_status | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| user_id | String | No |
| session_owner_id | String | No |
| reputation_status | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| session_owner_id | String | StringFieldUpdateOperationsInput | No |
| reputation_status | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| user_id | String | StringFieldUpdateOperationsInput | No |
| session_owner_id | String | StringFieldUpdateOperationsInput | No |
| reputation_status | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| vote_status | String | No |
| created_at | DateTime | No |
| tweet | TweetCreateNestedOneWithoutVotesInput | No |
| user | UserCreateNestedOneWithoutVotesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| tweet_id | String | No |
| user_id | String | No |
| vote_status | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| vote_status | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| tweet | TweetUpdateOneRequiredWithoutVotesNestedInput | No |
| user | UserUpdateOneRequiredWithoutVotesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| tweet_id | String | StringFieldUpdateOperationsInput | No |
| user_id | String | StringFieldUpdateOperationsInput | No |
| vote_status | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| tweet_id | String | No |
| user_id | String | No |
| vote_status | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| vote_status | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| tweet_id | String | StringFieldUpdateOperationsInput | No |
| user_id | String | StringFieldUpdateOperationsInput | No |
| vote_status | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| created_at | DateTime | No |
| tweet | TweetCreateNestedOneWithoutRetweetsInput | No |
| user | UserCreateNestedOneWithoutRetweetsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| tweet_id | String | No |
| user_id | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| tweet | TweetUpdateOneRequiredWithoutRetweetsNestedInput | No |
| user | UserUpdateOneRequiredWithoutRetweetsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| tweet_id | String | StringFieldUpdateOperationsInput | No |
| user_id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| tweet_id | String | No |
| user_id | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| tweet_id | String | StringFieldUpdateOperationsInput | No |
| user_id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| created_at | DateTime | No |
| tweet | TweetCreateNestedOneWithoutBookmarksInput | No |
| user | UserCreateNestedOneWithoutBookmarksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| tweet_id | String | No |
| user_id | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| tweet | TweetUpdateOneRequiredWithoutBookmarksNestedInput | No |
| user | UserUpdateOneRequiredWithoutBookmarksNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| tweet_id | String | StringFieldUpdateOperationsInput | No |
| user_id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| tweet_id | String | No |
| user_id | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| tweet_id | String | StringFieldUpdateOperationsInput | No |
| user_id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | No |
| hashtag | String | No |
| score | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | No |
| hashtag | String | No |
| score | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| text | String | StringFieldUpdateOperationsInput | No |
| hashtag | String | StringFieldUpdateOperationsInput | No |
| score | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| text | String | StringFieldUpdateOperationsInput | No |
| hashtag | String | StringFieldUpdateOperationsInput | No |
| score | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | No |
| hashtag | String | No |
| score | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| text | String | StringFieldUpdateOperationsInput | No |
| hashtag | String | StringFieldUpdateOperationsInput | No |
| score | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| text | String | StringFieldUpdateOperationsInput | No |
| hashtag | String | StringFieldUpdateOperationsInput | No |
| score | Int | IntFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| image | String | Null | Yes |
| created_at | DateTime | No |
| sender | UserCreateNestedOneWithoutReceived_messagesInput | No |
| receiver | UserCreateNestedOneWithoutSent_messagesInput | No |
| conversation | ConversationCreateNestedOneWithoutMessagesInput | No |
| media | MediaCreateNestedManyWithoutMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| image | String | Null | Yes |
| created_at | DateTime | No |
| sender_id | String | No |
| receiver_id | String | No |
| conversation_id | String | No |
| media | MediaUncheckedCreateNestedManyWithoutMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| text | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| sender | UserUpdateOneRequiredWithoutReceived_messagesNestedInput | No |
| receiver | UserUpdateOneRequiredWithoutSent_messagesNestedInput | No |
| conversation | ConversationUpdateOneRequiredWithoutMessagesNestedInput | No |
| media | MediaUpdateManyWithoutMessageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| text | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| sender_id | String | StringFieldUpdateOperationsInput | No |
| receiver_id | String | StringFieldUpdateOperationsInput | No |
| conversation_id | String | StringFieldUpdateOperationsInput | No |
| media | MediaUncheckedUpdateManyWithoutMessageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| image | String | Null | Yes |
| created_at | DateTime | No |
| sender_id | String | No |
| receiver_id | String | No |
| conversation_id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| text | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| text | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| sender_id | String | StringFieldUpdateOperationsInput | No |
| receiver_id | String | StringFieldUpdateOperationsInput | No |
| conversation_id | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| created_at | DateTime | No |
| users | UserCreateNestedManyWithoutConversationsInput | No |
| messages | MessageCreateNestedManyWithoutConversationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| created_at | DateTime | No |
| users | UserUncheckedCreateNestedManyWithoutConversationsInput | No |
| messages | MessageUncheckedCreateNestedManyWithoutConversationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| users | UserUpdateManyWithoutConversationsNestedInput | No |
| messages | MessageUpdateManyWithoutConversationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| users | UserUncheckedUpdateManyWithoutConversationsNestedInput | No |
| messages | MessageUncheckedUpdateManyWithoutConversationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| nonce | String | No |
| expires | DateTime | No |
| user | UserCreateNestedOneWithoutCryptoLoginNonceInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| nonce | String | No |
| expires | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| nonce | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutCryptoLoginNonceNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | StringFieldUpdateOperationsInput | No |
| nonce | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| nonce | String | No |
| expires | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| nonce | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | StringFieldUpdateOperationsInput | No |
| nonce | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| mode | QueryMode | No |
| not | String | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | ListDateTimeFieldRefInput | No |
| notIn | DateTime | ListDateTimeFieldRefInput | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | No |
| token | String | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | SortOrder | No |
| token | SortOrder | No |
| expires | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | SortOrder | No |
| token | SortOrder | No |
| expires | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | SortOrder | No |
| token | SortOrder | No |
| expires | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| mode | QueryMode | No |
| not | String | NestedStringWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedStringFilter | No |
| _max | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | ListDateTimeFieldRefInput | No |
| notIn | DateTime | ListDateTimeFieldRefInput | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedDateTimeFilter | No |
| _max | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | ListStringFieldRefInput | Null | Yes |
| notIn | String | ListStringFieldRefInput | Null | Yes |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| mode | QueryMode | No |
| not | String | NestedStringNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | Null | Yes |
| in | Int | ListIntFieldRefInput | Null | Yes |
| notIn | Int | ListIntFieldRefInput | Null | Yes |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| is | UserWhereInput | No |
| isNot | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| sort | SortOrder | No |
| nulls | NullsOrder | No |
| Name | Type | Nullable |
|---|---|---|
| provider | String | No |
| providerAccountId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userId | SortOrder | No |
| type | SortOrder | No |
| provider | SortOrder | No |
| providerAccountId | SortOrder | No |
| refresh_token | SortOrder | No |
| access_token | SortOrder | No |
| oath_token | SortOrder | No |
| oauth_token_secret | SortOrder | No |
| expires_at | SortOrder | No |
| token_type | SortOrder | No |
| scope | SortOrder | No |
| id_token | SortOrder | No |
| session_state | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| expires_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userId | SortOrder | No |
| type | SortOrder | No |
| provider | SortOrder | No |
| providerAccountId | SortOrder | No |
| refresh_token | SortOrder | No |
| access_token | SortOrder | No |
| oath_token | SortOrder | No |
| oauth_token_secret | SortOrder | No |
| expires_at | SortOrder | No |
| token_type | SortOrder | No |
| scope | SortOrder | No |
| id_token | SortOrder | No |
| session_state | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| userId | SortOrder | No |
| type | SortOrder | No |
| provider | SortOrder | No |
| providerAccountId | SortOrder | No |
| refresh_token | SortOrder | No |
| access_token | SortOrder | No |
| oath_token | SortOrder | No |
| oauth_token_secret | SortOrder | No |
| expires_at | SortOrder | No |
| token_type | SortOrder | No |
| scope | SortOrder | No |
| id_token | SortOrder | No |
| session_state | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| expires_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | ListStringFieldRefInput | Null | Yes |
| notIn | String | ListStringFieldRefInput | Null | Yes |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| mode | QueryMode | No |
| not | String | NestedStringNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedStringNullableFilter | No |
| _max | NestedStringNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | Null | Yes |
| in | Int | ListIntFieldRefInput | Null | Yes |
| notIn | Int | ListIntFieldRefInput | Null | Yes |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedIntNullableFilter | No |
| _min | NestedIntNullableFilter | No |
| _max | NestedIntNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| sessionToken | SortOrder | No |
| expires | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| sessionToken | SortOrder | No |
| expires | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| sessionToken | SortOrder | No |
| expires | SortOrder | No |
| userId | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | No |
| not | Boolean | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | Null | Yes |
| in | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| notIn | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | UserRole | EnumUserRoleFieldRefInput | No |
| in | UserRole[] | ListEnumUserRoleFieldRefInput | No |
| notIn | UserRole[] | ListEnumUserRoleFieldRefInput | No |
| not | UserRole | NestedEnumUserRoleFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | ListIntFieldRefInput | No |
| notIn | Int | ListIntFieldRefInput | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | No |
| in | Float | ListFloatFieldRefInput | No |
| notIn | Float | ListFloatFieldRefInput | No |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| is | CryptoLoginNonceWhereInput | Null | Yes |
| isNot | CryptoLoginNonceWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| every | AccountWhereInput | No |
| some | AccountWhereInput | No |
| none | AccountWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | SessionWhereInput | No |
| some | SessionWhereInput | No |
| none | SessionWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | TweetWhereInput | No |
| some | TweetWhereInput | No |
| none | TweetWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | LikeWhereInput | No |
| some | LikeWhereInput | No |
| none | LikeWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | ReputationWhereInput | No |
| some | ReputationWhereInput | No |
| none | ReputationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | VoteWhereInput | No |
| some | VoteWhereInput | No |
| none | VoteWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | FollowerWhereInput | No |
| some | FollowerWhereInput | No |
| none | FollowerWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | RetweetWhereInput | No |
| some | RetweetWhereInput | No |
| none | RetweetWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | BookmarkWhereInput | No |
| some | BookmarkWhereInput | No |
| none | BookmarkWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | MessageWhereInput | No |
| some | MessageWhereInput | No |
| none | MessageWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | ConversationWhereInput | No |
| some | ConversationWhereInput | No |
| none | ConversationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| is | TweetWhereInput | Null | Yes |
| isNot | TweetWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| screen_name | SortOrder | No |
| location | SortOrder | No |
| url | SortOrder | No |
| description | SortOrder | No |
| detail | SortOrder | No |
| protected | SortOrder | No |
| verified | SortOrder | No |
| SortOrder | No | |
| emailVerified | SortOrder | No |
| google_id | SortOrder | No |
| google_username | SortOrder | No |
| google_email | SortOrder | No |
| discord_id | SortOrder | No |
| discord_username | SortOrder | No |
| discord_email | SortOrder | No |
| twitter_id | SortOrder | No |
| twitter_username | SortOrder | No |
| twitter_email | SortOrder | No |
| image | SortOrder | No |
| password | SortOrder | No |
| role | SortOrder | No |
| created_at | SortOrder | No |
| followers_count | SortOrder | No |
| friends_count | SortOrder | No |
| favorites_count | SortOrder | No |
| statuses_count | SortOrder | No |
| reputation_count | SortOrder | No |
| normalized_reputation | SortOrder | No |
| profile_banner_url | SortOrder | No |
| profile_image_url | SortOrder | No |
| evm_address | SortOrder | No |
| bech32_address | SortOrder | No |
| pinned_tweet_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| followers_count | SortOrder | No |
| friends_count | SortOrder | No |
| favorites_count | SortOrder | No |
| statuses_count | SortOrder | No |
| reputation_count | SortOrder | No |
| normalized_reputation | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| screen_name | SortOrder | No |
| location | SortOrder | No |
| url | SortOrder | No |
| description | SortOrder | No |
| detail | SortOrder | No |
| protected | SortOrder | No |
| verified | SortOrder | No |
| SortOrder | No | |
| emailVerified | SortOrder | No |
| google_id | SortOrder | No |
| google_username | SortOrder | No |
| google_email | SortOrder | No |
| discord_id | SortOrder | No |
| discord_username | SortOrder | No |
| discord_email | SortOrder | No |
| twitter_id | SortOrder | No |
| twitter_username | SortOrder | No |
| twitter_email | SortOrder | No |
| image | SortOrder | No |
| password | SortOrder | No |
| role | SortOrder | No |
| created_at | SortOrder | No |
| followers_count | SortOrder | No |
| friends_count | SortOrder | No |
| favorites_count | SortOrder | No |
| statuses_count | SortOrder | No |
| reputation_count | SortOrder | No |
| normalized_reputation | SortOrder | No |
| profile_banner_url | SortOrder | No |
| profile_image_url | SortOrder | No |
| evm_address | SortOrder | No |
| bech32_address | SortOrder | No |
| pinned_tweet_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| name | SortOrder | No |
| screen_name | SortOrder | No |
| location | SortOrder | No |
| url | SortOrder | No |
| description | SortOrder | No |
| detail | SortOrder | No |
| protected | SortOrder | No |
| verified | SortOrder | No |
| SortOrder | No | |
| emailVerified | SortOrder | No |
| google_id | SortOrder | No |
| google_username | SortOrder | No |
| google_email | SortOrder | No |
| discord_id | SortOrder | No |
| discord_username | SortOrder | No |
| discord_email | SortOrder | No |
| twitter_id | SortOrder | No |
| twitter_username | SortOrder | No |
| twitter_email | SortOrder | No |
| image | SortOrder | No |
| password | SortOrder | No |
| role | SortOrder | No |
| created_at | SortOrder | No |
| followers_count | SortOrder | No |
| friends_count | SortOrder | No |
| favorites_count | SortOrder | No |
| statuses_count | SortOrder | No |
| reputation_count | SortOrder | No |
| normalized_reputation | SortOrder | No |
| profile_banner_url | SortOrder | No |
| profile_image_url | SortOrder | No |
| evm_address | SortOrder | No |
| bech32_address | SortOrder | No |
| pinned_tweet_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| followers_count | SortOrder | No |
| friends_count | SortOrder | No |
| favorites_count | SortOrder | No |
| statuses_count | SortOrder | No |
| reputation_count | SortOrder | No |
| normalized_reputation | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | No |
| not | Boolean | NestedBoolWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedBoolFilter | No |
| _max | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | Null | Yes |
| in | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| notIn | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedDateTimeNullableFilter | No |
| _max | NestedDateTimeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | UserRole | EnumUserRoleFieldRefInput | No |
| in | UserRole[] | ListEnumUserRoleFieldRefInput | No |
| notIn | UserRole[] | ListEnumUserRoleFieldRefInput | No |
| not | UserRole | NestedEnumUserRoleWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumUserRoleFilter | No |
| _max | NestedEnumUserRoleFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | ListIntFieldRefInput | No |
| notIn | Int | ListIntFieldRefInput | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedIntFilter | No |
| _min | NestedIntFilter | No |
| _max | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | No |
| in | Float | ListFloatFieldRefInput | No |
| notIn | Float | ListFloatFieldRefInput | No |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedFloatFilter | No |
| _min | NestedFloatFilter | No |
| _max | NestedFloatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| follower_id | SortOrder | No |
| followed_id | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| follower_id | SortOrder | No |
| followed_id | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| follower_id | SortOrder | No |
| followed_id | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| follower_id | SortOrder | No |
| balance | SortOrder | No |
| amount | SortOrder | No |
| description | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| follower_id | SortOrder | No |
| balance | SortOrder | No |
| amount | SortOrder | No |
| description | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| follower_id | SortOrder | No |
| balance | SortOrder | No |
| amount | SortOrder | No |
| description | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| every | MediaWhereInput | No |
| some | MediaWhereInput | No |
| none | MediaWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| every | UserWhereInput | No |
| some | UserWhereInput | No |
| none | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| text | SortOrder | No |
| source | SortOrder | No |
| in_reply_to_user_id | SortOrder | No |
| in_reply_to_screen_name | SortOrder | No |
| is_quote_status | SortOrder | No |
| quoted_status_id | SortOrder | No |
| quote_count | SortOrder | No |
| reply_count | SortOrder | No |
| retweet_count | SortOrder | No |
| favorite_count | SortOrder | No |
| vote_count | SortOrder | No |
| possibly_sensitive | SortOrder | No |
| lang | SortOrder | No |
| created_at | SortOrder | No |
| author_id | SortOrder | No |
| quoted_tweet_id | SortOrder | No |
| in_reply_to_status_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| quote_count | SortOrder | No |
| reply_count | SortOrder | No |
| retweet_count | SortOrder | No |
| favorite_count | SortOrder | No |
| vote_count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| text | SortOrder | No |
| source | SortOrder | No |
| in_reply_to_user_id | SortOrder | No |
| in_reply_to_screen_name | SortOrder | No |
| is_quote_status | SortOrder | No |
| quoted_status_id | SortOrder | No |
| quote_count | SortOrder | No |
| reply_count | SortOrder | No |
| retweet_count | SortOrder | No |
| favorite_count | SortOrder | No |
| vote_count | SortOrder | No |
| possibly_sensitive | SortOrder | No |
| lang | SortOrder | No |
| created_at | SortOrder | No |
| author_id | SortOrder | No |
| quoted_tweet_id | SortOrder | No |
| in_reply_to_status_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| text | SortOrder | No |
| source | SortOrder | No |
| in_reply_to_user_id | SortOrder | No |
| in_reply_to_screen_name | SortOrder | No |
| is_quote_status | SortOrder | No |
| quoted_status_id | SortOrder | No |
| quote_count | SortOrder | No |
| reply_count | SortOrder | No |
| retweet_count | SortOrder | No |
| favorite_count | SortOrder | No |
| vote_count | SortOrder | No |
| possibly_sensitive | SortOrder | No |
| lang | SortOrder | No |
| created_at | SortOrder | No |
| author_id | SortOrder | No |
| quoted_tweet_id | SortOrder | No |
| in_reply_to_status_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| quote_count | SortOrder | No |
| reply_count | SortOrder | No |
| retweet_count | SortOrder | No |
| favorite_count | SortOrder | No |
| vote_count | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | MessageWhereInput | Null | Yes |
| isNot | MessageWhereInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| media_url | SortOrder | No |
| media_type | SortOrder | No |
| media_path | SortOrder | No |
| tweet_id | SortOrder | No |
| message_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| media_url | SortOrder | No |
| media_type | SortOrder | No |
| media_path | SortOrder | No |
| tweet_id | SortOrder | No |
| message_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| media_url | SortOrder | No |
| media_type | SortOrder | No |
| media_path | SortOrder | No |
| tweet_id | SortOrder | No |
| message_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | TweetWhereInput | No |
| isNot | TweetWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| tweet_id | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| tweet_id | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| tweet_id | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| session_owner_id | SortOrder | No |
| reputation_status | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| session_owner_id | SortOrder | No |
| reputation_status | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| user_id | SortOrder | No |
| session_owner_id | SortOrder | No |
| reputation_status | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| tweet_id | SortOrder | No |
| user_id | SortOrder | No |
| vote_status | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| tweet_id | SortOrder | No |
| user_id | SortOrder | No |
| vote_status | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| tweet_id | SortOrder | No |
| user_id | SortOrder | No |
| vote_status | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| tweet_id | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| tweet_id | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| tweet_id | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| tweet_id | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| tweet_id | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| tweet_id | SortOrder | No |
| user_id | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| text | SortOrder | No |
| hashtag | SortOrder | No |
| score | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| score | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| text | SortOrder | No |
| hashtag | SortOrder | No |
| score | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| text | SortOrder | No |
| hashtag | SortOrder | No |
| score | SortOrder | No |
| created_at | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| score | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| is | ConversationWhereInput | No |
| isNot | ConversationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| text | SortOrder | No |
| image | SortOrder | No |
| created_at | SortOrder | No |
| sender_id | SortOrder | No |
| receiver_id | SortOrder | No |
| conversation_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| text | SortOrder | No |
| image | SortOrder | No |
| created_at | SortOrder | No |
| sender_id | SortOrder | No |
| receiver_id | SortOrder | No |
| conversation_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| id | SortOrder | No |
| text | SortOrder | No |
| image | SortOrder | No |
| created_at | SortOrder | No |
| sender_id | SortOrder | No |
| receiver_id | SortOrder | No |
| conversation_id | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| nonce | SortOrder | No |
| expires | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| nonce | SortOrder | No |
| expires | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| userId | SortOrder | No |
| nonce | SortOrder | No |
| expires | SortOrder | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | No |
| Name | Type | Nullable |
|---|---|---|
| set | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutAccountsInput | UserUncheckedCreateWithoutAccountsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutAccountsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| set | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| set | Int | Null | Yes |
| increment | Int | No |
| decrement | Int | No |
| multiply | Int | No |
| divide | Int | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutAccountsInput | UserUncheckedCreateWithoutAccountsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutAccountsInput | No |
| upsert | UserUpsertWithoutAccountsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutAccountsInput | UserUpdateWithoutAccountsInput | UserUncheckedUpdateWithoutAccountsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutSessionsInput | UserUncheckedCreateWithoutSessionsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutSessionsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutSessionsInput | UserUncheckedCreateWithoutSessionsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutSessionsInput | No |
| upsert | UserUpsertWithoutSessionsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutSessionsInput | UserUpdateWithoutSessionsInput | UserUncheckedUpdateWithoutSessionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CryptoLoginNonceCreateWithoutUserInput | CryptoLoginNonceUncheckedCreateWithoutUserInput | No |
| connectOrCreate | CryptoLoginNonceCreateOrConnectWithoutUserInput | No |
| connect | CryptoLoginNonceWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | AccountCreateWithoutUserInput | AccountCreateWithoutUserInput[] | AccountUncheckedCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | AccountCreateOrConnectWithoutUserInput | AccountCreateOrConnectWithoutUserInput[] | No |
| createMany | AccountCreateManyUserInputEnvelope | No |
| connect | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SessionCreateWithoutUserInput | SessionCreateWithoutUserInput[] | SessionUncheckedCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | SessionCreateOrConnectWithoutUserInput | SessionCreateOrConnectWithoutUserInput[] | No |
| createMany | SessionCreateManyUserInputEnvelope | No |
| connect | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TweetCreateWithoutAuthorInput | TweetCreateWithoutAuthorInput[] | TweetUncheckedCreateWithoutAuthorInput | TweetUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | TweetCreateOrConnectWithoutAuthorInput | TweetCreateOrConnectWithoutAuthorInput[] | No |
| createMany | TweetCreateManyAuthorInputEnvelope | No |
| connect | TweetWhereUniqueInput | TweetWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutUserInput | LikeCreateWithoutUserInput[] | LikeUncheckedCreateWithoutUserInput | LikeUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutUserInput | LikeCreateOrConnectWithoutUserInput[] | No |
| createMany | LikeCreateManyUserInputEnvelope | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ReputationCreateWithoutUserInput | ReputationCreateWithoutUserInput[] | ReputationUncheckedCreateWithoutUserInput | ReputationUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | ReputationCreateOrConnectWithoutUserInput | ReputationCreateOrConnectWithoutUserInput[] | No |
| createMany | ReputationCreateManyUserInputEnvelope | No |
| connect | ReputationWhereUniqueInput | ReputationWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | VoteCreateWithoutUserInput | VoteCreateWithoutUserInput[] | VoteUncheckedCreateWithoutUserInput | VoteUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | VoteCreateOrConnectWithoutUserInput | VoteCreateOrConnectWithoutUserInput[] | No |
| createMany | VoteCreateManyUserInputEnvelope | No |
| connect | VoteWhereUniqueInput | VoteWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowerCreateWithoutFollowerInput | FollowerCreateWithoutFollowerInput[] | FollowerUncheckedCreateWithoutFollowerInput | FollowerUncheckedCreateWithoutFollowerInput[] | No |
| connectOrCreate | FollowerCreateOrConnectWithoutFollowerInput | FollowerCreateOrConnectWithoutFollowerInput[] | No |
| createMany | FollowerCreateManyFollowerInputEnvelope | No |
| connect | FollowerWhereUniqueInput | FollowerWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowerCreateWithoutFollowedInput | FollowerCreateWithoutFollowedInput[] | FollowerUncheckedCreateWithoutFollowedInput | FollowerUncheckedCreateWithoutFollowedInput[] | No |
| connectOrCreate | FollowerCreateOrConnectWithoutFollowedInput | FollowerCreateOrConnectWithoutFollowedInput[] | No |
| createMany | FollowerCreateManyFollowedInputEnvelope | No |
| connect | FollowerWhereUniqueInput | FollowerWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RetweetCreateWithoutUserInput | RetweetCreateWithoutUserInput[] | RetweetUncheckedCreateWithoutUserInput | RetweetUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | RetweetCreateOrConnectWithoutUserInput | RetweetCreateOrConnectWithoutUserInput[] | No |
| createMany | RetweetCreateManyUserInputEnvelope | No |
| connect | RetweetWhereUniqueInput | RetweetWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookmarkCreateWithoutUserInput | BookmarkCreateWithoutUserInput[] | BookmarkUncheckedCreateWithoutUserInput | BookmarkUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | BookmarkCreateOrConnectWithoutUserInput | BookmarkCreateOrConnectWithoutUserInput[] | No |
| createMany | BookmarkCreateManyUserInputEnvelope | No |
| connect | BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MessageCreateWithoutReceiverInput | MessageCreateWithoutReceiverInput[] | MessageUncheckedCreateWithoutReceiverInput | MessageUncheckedCreateWithoutReceiverInput[] | No |
| connectOrCreate | MessageCreateOrConnectWithoutReceiverInput | MessageCreateOrConnectWithoutReceiverInput[] | No |
| createMany | MessageCreateManyReceiverInputEnvelope | No |
| connect | MessageWhereUniqueInput | MessageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MessageCreateWithoutSenderInput | MessageCreateWithoutSenderInput[] | MessageUncheckedCreateWithoutSenderInput | MessageUncheckedCreateWithoutSenderInput[] | No |
| connectOrCreate | MessageCreateOrConnectWithoutSenderInput | MessageCreateOrConnectWithoutSenderInput[] | No |
| createMany | MessageCreateManySenderInputEnvelope | No |
| connect | MessageWhereUniqueInput | MessageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TweetCreateWithoutPinned_by_usersInput | TweetUncheckedCreateWithoutPinned_by_usersInput | No |
| connectOrCreate | TweetCreateOrConnectWithoutPinned_by_usersInput | No |
| connect | TweetWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CryptoLoginNonceCreateWithoutUserInput | CryptoLoginNonceUncheckedCreateWithoutUserInput | No |
| connectOrCreate | CryptoLoginNonceCreateOrConnectWithoutUserInput | No |
| connect | CryptoLoginNonceWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | AccountCreateWithoutUserInput | AccountCreateWithoutUserInput[] | AccountUncheckedCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | AccountCreateOrConnectWithoutUserInput | AccountCreateOrConnectWithoutUserInput[] | No |
| createMany | AccountCreateManyUserInputEnvelope | No |
| connect | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SessionCreateWithoutUserInput | SessionCreateWithoutUserInput[] | SessionUncheckedCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | SessionCreateOrConnectWithoutUserInput | SessionCreateOrConnectWithoutUserInput[] | No |
| createMany | SessionCreateManyUserInputEnvelope | No |
| connect | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TweetCreateWithoutAuthorInput | TweetCreateWithoutAuthorInput[] | TweetUncheckedCreateWithoutAuthorInput | TweetUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | TweetCreateOrConnectWithoutAuthorInput | TweetCreateOrConnectWithoutAuthorInput[] | No |
| createMany | TweetCreateManyAuthorInputEnvelope | No |
| connect | TweetWhereUniqueInput | TweetWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutUserInput | LikeCreateWithoutUserInput[] | LikeUncheckedCreateWithoutUserInput | LikeUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutUserInput | LikeCreateOrConnectWithoutUserInput[] | No |
| createMany | LikeCreateManyUserInputEnvelope | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | ReputationCreateWithoutUserInput | ReputationCreateWithoutUserInput[] | ReputationUncheckedCreateWithoutUserInput | ReputationUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | ReputationCreateOrConnectWithoutUserInput | ReputationCreateOrConnectWithoutUserInput[] | No |
| createMany | ReputationCreateManyUserInputEnvelope | No |
| connect | ReputationWhereUniqueInput | ReputationWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | VoteCreateWithoutUserInput | VoteCreateWithoutUserInput[] | VoteUncheckedCreateWithoutUserInput | VoteUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | VoteCreateOrConnectWithoutUserInput | VoteCreateOrConnectWithoutUserInput[] | No |
| createMany | VoteCreateManyUserInputEnvelope | No |
| connect | VoteWhereUniqueInput | VoteWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowerCreateWithoutFollowerInput | FollowerCreateWithoutFollowerInput[] | FollowerUncheckedCreateWithoutFollowerInput | FollowerUncheckedCreateWithoutFollowerInput[] | No |
| connectOrCreate | FollowerCreateOrConnectWithoutFollowerInput | FollowerCreateOrConnectWithoutFollowerInput[] | No |
| createMany | FollowerCreateManyFollowerInputEnvelope | No |
| connect | FollowerWhereUniqueInput | FollowerWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | FollowerCreateWithoutFollowedInput | FollowerCreateWithoutFollowedInput[] | FollowerUncheckedCreateWithoutFollowedInput | FollowerUncheckedCreateWithoutFollowedInput[] | No |
| connectOrCreate | FollowerCreateOrConnectWithoutFollowedInput | FollowerCreateOrConnectWithoutFollowedInput[] | No |
| createMany | FollowerCreateManyFollowedInputEnvelope | No |
| connect | FollowerWhereUniqueInput | FollowerWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RetweetCreateWithoutUserInput | RetweetCreateWithoutUserInput[] | RetweetUncheckedCreateWithoutUserInput | RetweetUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | RetweetCreateOrConnectWithoutUserInput | RetweetCreateOrConnectWithoutUserInput[] | No |
| createMany | RetweetCreateManyUserInputEnvelope | No |
| connect | RetweetWhereUniqueInput | RetweetWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookmarkCreateWithoutUserInput | BookmarkCreateWithoutUserInput[] | BookmarkUncheckedCreateWithoutUserInput | BookmarkUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | BookmarkCreateOrConnectWithoutUserInput | BookmarkCreateOrConnectWithoutUserInput[] | No |
| createMany | BookmarkCreateManyUserInputEnvelope | No |
| connect | BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MessageCreateWithoutReceiverInput | MessageCreateWithoutReceiverInput[] | MessageUncheckedCreateWithoutReceiverInput | MessageUncheckedCreateWithoutReceiverInput[] | No |
| connectOrCreate | MessageCreateOrConnectWithoutReceiverInput | MessageCreateOrConnectWithoutReceiverInput[] | No |
| createMany | MessageCreateManyReceiverInputEnvelope | No |
| connect | MessageWhereUniqueInput | MessageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MessageCreateWithoutSenderInput | MessageCreateWithoutSenderInput[] | MessageUncheckedCreateWithoutSenderInput | MessageUncheckedCreateWithoutSenderInput[] | No |
| connectOrCreate | MessageCreateOrConnectWithoutSenderInput | MessageCreateOrConnectWithoutSenderInput[] | No |
| createMany | MessageCreateManySenderInputEnvelope | No |
| connect | MessageWhereUniqueInput | MessageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| set | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| set | DateTime | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| set | UserRole | No |
| Name | Type | Nullable |
|---|---|---|
| set | Int | No |
| increment | Int | No |
| decrement | Int | No |
| multiply | Int | No |
| divide | Int | No |
| Name | Type | Nullable |
|---|---|---|
| set | Float | No |
| increment | Float | No |
| decrement | Float | No |
| multiply | Float | No |
| divide | Float | No |
| Name | Type | Nullable |
|---|---|---|
| create | CryptoLoginNonceCreateWithoutUserInput | CryptoLoginNonceUncheckedCreateWithoutUserInput | No |
| connectOrCreate | CryptoLoginNonceCreateOrConnectWithoutUserInput | No |
| upsert | CryptoLoginNonceUpsertWithoutUserInput | No |
| disconnect | Boolean | CryptoLoginNonceWhereInput | No |
| delete | Boolean | CryptoLoginNonceWhereInput | No |
| connect | CryptoLoginNonceWhereUniqueInput | No |
| update | CryptoLoginNonceUpdateToOneWithWhereWithoutUserInput | CryptoLoginNonceUpdateWithoutUserInput | CryptoLoginNonceUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | AccountCreateWithoutUserInput | AccountCreateWithoutUserInput[] | AccountUncheckedCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | AccountCreateOrConnectWithoutUserInput | AccountCreateOrConnectWithoutUserInput[] | No |
| upsert | AccountUpsertWithWhereUniqueWithoutUserInput | AccountUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | AccountCreateManyUserInputEnvelope | No |
| set | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| disconnect | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| delete | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| connect | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| update | AccountUpdateWithWhereUniqueWithoutUserInput | AccountUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | AccountUpdateManyWithWhereWithoutUserInput | AccountUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | AccountScalarWhereInput | AccountScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SessionCreateWithoutUserInput | SessionCreateWithoutUserInput[] | SessionUncheckedCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | SessionCreateOrConnectWithoutUserInput | SessionCreateOrConnectWithoutUserInput[] | No |
| upsert | SessionUpsertWithWhereUniqueWithoutUserInput | SessionUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | SessionCreateManyUserInputEnvelope | No |
| set | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| disconnect | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| delete | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| connect | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| update | SessionUpdateWithWhereUniqueWithoutUserInput | SessionUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | SessionUpdateManyWithWhereWithoutUserInput | SessionUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | SessionScalarWhereInput | SessionScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TweetCreateWithoutAuthorInput | TweetCreateWithoutAuthorInput[] | TweetUncheckedCreateWithoutAuthorInput | TweetUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | TweetCreateOrConnectWithoutAuthorInput | TweetCreateOrConnectWithoutAuthorInput[] | No |
| upsert | TweetUpsertWithWhereUniqueWithoutAuthorInput | TweetUpsertWithWhereUniqueWithoutAuthorInput[] | No |
| createMany | TweetCreateManyAuthorInputEnvelope | No |
| set | TweetWhereUniqueInput | TweetWhereUniqueInput[] | No |
| disconnect | TweetWhereUniqueInput | TweetWhereUniqueInput[] | No |
| delete | TweetWhereUniqueInput | TweetWhereUniqueInput[] | No |
| connect | TweetWhereUniqueInput | TweetWhereUniqueInput[] | No |
| update | TweetUpdateWithWhereUniqueWithoutAuthorInput | TweetUpdateWithWhereUniqueWithoutAuthorInput[] | No |
| updateMany | TweetUpdateManyWithWhereWithoutAuthorInput | TweetUpdateManyWithWhereWithoutAuthorInput[] | No |
| deleteMany | TweetScalarWhereInput | TweetScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutUserInput | LikeCreateWithoutUserInput[] | LikeUncheckedCreateWithoutUserInput | LikeUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutUserInput | LikeCreateOrConnectWithoutUserInput[] | No |
| upsert | LikeUpsertWithWhereUniqueWithoutUserInput | LikeUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | LikeCreateManyUserInputEnvelope | No |
| set | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| disconnect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| delete | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| update | LikeUpdateWithWhereUniqueWithoutUserInput | LikeUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | LikeUpdateManyWithWhereWithoutUserInput | LikeUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | LikeScalarWhereInput | LikeScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | VoteCreateWithoutUserInput | VoteCreateWithoutUserInput[] | VoteUncheckedCreateWithoutUserInput | VoteUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | VoteCreateOrConnectWithoutUserInput | VoteCreateOrConnectWithoutUserInput[] | No |
| upsert | VoteUpsertWithWhereUniqueWithoutUserInput | VoteUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | VoteCreateManyUserInputEnvelope | No |
| set | VoteWhereUniqueInput | VoteWhereUniqueInput[] | No |
| disconnect | VoteWhereUniqueInput | VoteWhereUniqueInput[] | No |
| delete | VoteWhereUniqueInput | VoteWhereUniqueInput[] | No |
| connect | VoteWhereUniqueInput | VoteWhereUniqueInput[] | No |
| update | VoteUpdateWithWhereUniqueWithoutUserInput | VoteUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | VoteUpdateManyWithWhereWithoutUserInput | VoteUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | VoteScalarWhereInput | VoteScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RetweetCreateWithoutUserInput | RetweetCreateWithoutUserInput[] | RetweetUncheckedCreateWithoutUserInput | RetweetUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | RetweetCreateOrConnectWithoutUserInput | RetweetCreateOrConnectWithoutUserInput[] | No |
| upsert | RetweetUpsertWithWhereUniqueWithoutUserInput | RetweetUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | RetweetCreateManyUserInputEnvelope | No |
| set | RetweetWhereUniqueInput | RetweetWhereUniqueInput[] | No |
| disconnect | RetweetWhereUniqueInput | RetweetWhereUniqueInput[] | No |
| delete | RetweetWhereUniqueInput | RetweetWhereUniqueInput[] | No |
| connect | RetweetWhereUniqueInput | RetweetWhereUniqueInput[] | No |
| update | RetweetUpdateWithWhereUniqueWithoutUserInput | RetweetUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | RetweetUpdateManyWithWhereWithoutUserInput | RetweetUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | RetweetScalarWhereInput | RetweetScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookmarkCreateWithoutUserInput | BookmarkCreateWithoutUserInput[] | BookmarkUncheckedCreateWithoutUserInput | BookmarkUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | BookmarkCreateOrConnectWithoutUserInput | BookmarkCreateOrConnectWithoutUserInput[] | No |
| upsert | BookmarkUpsertWithWhereUniqueWithoutUserInput | BookmarkUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | BookmarkCreateManyUserInputEnvelope | No |
| set | BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] | No |
| disconnect | BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] | No |
| delete | BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] | No |
| connect | BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] | No |
| update | BookmarkUpdateWithWhereUniqueWithoutUserInput | BookmarkUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | BookmarkUpdateManyWithWhereWithoutUserInput | BookmarkUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | BookmarkScalarWhereInput | BookmarkScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MessageCreateWithoutSenderInput | MessageCreateWithoutSenderInput[] | MessageUncheckedCreateWithoutSenderInput | MessageUncheckedCreateWithoutSenderInput[] | No |
| connectOrCreate | MessageCreateOrConnectWithoutSenderInput | MessageCreateOrConnectWithoutSenderInput[] | No |
| upsert | MessageUpsertWithWhereUniqueWithoutSenderInput | MessageUpsertWithWhereUniqueWithoutSenderInput[] | No |
| createMany | MessageCreateManySenderInputEnvelope | No |
| set | MessageWhereUniqueInput | MessageWhereUniqueInput[] | No |
| disconnect | MessageWhereUniqueInput | MessageWhereUniqueInput[] | No |
| delete | MessageWhereUniqueInput | MessageWhereUniqueInput[] | No |
| connect | MessageWhereUniqueInput | MessageWhereUniqueInput[] | No |
| update | MessageUpdateWithWhereUniqueWithoutSenderInput | MessageUpdateWithWhereUniqueWithoutSenderInput[] | No |
| updateMany | MessageUpdateManyWithWhereWithoutSenderInput | MessageUpdateManyWithWhereWithoutSenderInput[] | No |
| deleteMany | MessageScalarWhereInput | MessageScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TweetCreateWithoutPinned_by_usersInput | TweetUncheckedCreateWithoutPinned_by_usersInput | No |
| connectOrCreate | TweetCreateOrConnectWithoutPinned_by_usersInput | No |
| upsert | TweetUpsertWithoutPinned_by_usersInput | No |
| disconnect | Boolean | TweetWhereInput | No |
| delete | Boolean | TweetWhereInput | No |
| connect | TweetWhereUniqueInput | No |
| update | TweetUpdateToOneWithWhereWithoutPinned_by_usersInput | TweetUpdateWithoutPinned_by_usersInput | TweetUncheckedUpdateWithoutPinned_by_usersInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | CryptoLoginNonceCreateWithoutUserInput | CryptoLoginNonceUncheckedCreateWithoutUserInput | No |
| connectOrCreate | CryptoLoginNonceCreateOrConnectWithoutUserInput | No |
| upsert | CryptoLoginNonceUpsertWithoutUserInput | No |
| disconnect | Boolean | CryptoLoginNonceWhereInput | No |
| delete | Boolean | CryptoLoginNonceWhereInput | No |
| connect | CryptoLoginNonceWhereUniqueInput | No |
| update | CryptoLoginNonceUpdateToOneWithWhereWithoutUserInput | CryptoLoginNonceUpdateWithoutUserInput | CryptoLoginNonceUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | AccountCreateWithoutUserInput | AccountCreateWithoutUserInput[] | AccountUncheckedCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | AccountCreateOrConnectWithoutUserInput | AccountCreateOrConnectWithoutUserInput[] | No |
| upsert | AccountUpsertWithWhereUniqueWithoutUserInput | AccountUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | AccountCreateManyUserInputEnvelope | No |
| set | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| disconnect | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| delete | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| connect | AccountWhereUniqueInput | AccountWhereUniqueInput[] | No |
| update | AccountUpdateWithWhereUniqueWithoutUserInput | AccountUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | AccountUpdateManyWithWhereWithoutUserInput | AccountUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | AccountScalarWhereInput | AccountScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | SessionCreateWithoutUserInput | SessionCreateWithoutUserInput[] | SessionUncheckedCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | SessionCreateOrConnectWithoutUserInput | SessionCreateOrConnectWithoutUserInput[] | No |
| upsert | SessionUpsertWithWhereUniqueWithoutUserInput | SessionUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | SessionCreateManyUserInputEnvelope | No |
| set | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| disconnect | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| delete | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| connect | SessionWhereUniqueInput | SessionWhereUniqueInput[] | No |
| update | SessionUpdateWithWhereUniqueWithoutUserInput | SessionUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | SessionUpdateManyWithWhereWithoutUserInput | SessionUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | SessionScalarWhereInput | SessionScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TweetCreateWithoutAuthorInput | TweetCreateWithoutAuthorInput[] | TweetUncheckedCreateWithoutAuthorInput | TweetUncheckedCreateWithoutAuthorInput[] | No |
| connectOrCreate | TweetCreateOrConnectWithoutAuthorInput | TweetCreateOrConnectWithoutAuthorInput[] | No |
| upsert | TweetUpsertWithWhereUniqueWithoutAuthorInput | TweetUpsertWithWhereUniqueWithoutAuthorInput[] | No |
| createMany | TweetCreateManyAuthorInputEnvelope | No |
| set | TweetWhereUniqueInput | TweetWhereUniqueInput[] | No |
| disconnect | TweetWhereUniqueInput | TweetWhereUniqueInput[] | No |
| delete | TweetWhereUniqueInput | TweetWhereUniqueInput[] | No |
| connect | TweetWhereUniqueInput | TweetWhereUniqueInput[] | No |
| update | TweetUpdateWithWhereUniqueWithoutAuthorInput | TweetUpdateWithWhereUniqueWithoutAuthorInput[] | No |
| updateMany | TweetUpdateManyWithWhereWithoutAuthorInput | TweetUpdateManyWithWhereWithoutAuthorInput[] | No |
| deleteMany | TweetScalarWhereInput | TweetScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutUserInput | LikeCreateWithoutUserInput[] | LikeUncheckedCreateWithoutUserInput | LikeUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutUserInput | LikeCreateOrConnectWithoutUserInput[] | No |
| upsert | LikeUpsertWithWhereUniqueWithoutUserInput | LikeUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | LikeCreateManyUserInputEnvelope | No |
| set | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| disconnect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| delete | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| update | LikeUpdateWithWhereUniqueWithoutUserInput | LikeUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | LikeUpdateManyWithWhereWithoutUserInput | LikeUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | LikeScalarWhereInput | LikeScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | VoteCreateWithoutUserInput | VoteCreateWithoutUserInput[] | VoteUncheckedCreateWithoutUserInput | VoteUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | VoteCreateOrConnectWithoutUserInput | VoteCreateOrConnectWithoutUserInput[] | No |
| upsert | VoteUpsertWithWhereUniqueWithoutUserInput | VoteUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | VoteCreateManyUserInputEnvelope | No |
| set | VoteWhereUniqueInput | VoteWhereUniqueInput[] | No |
| disconnect | VoteWhereUniqueInput | VoteWhereUniqueInput[] | No |
| delete | VoteWhereUniqueInput | VoteWhereUniqueInput[] | No |
| connect | VoteWhereUniqueInput | VoteWhereUniqueInput[] | No |
| update | VoteUpdateWithWhereUniqueWithoutUserInput | VoteUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | VoteUpdateManyWithWhereWithoutUserInput | VoteUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | VoteScalarWhereInput | VoteScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RetweetCreateWithoutUserInput | RetweetCreateWithoutUserInput[] | RetweetUncheckedCreateWithoutUserInput | RetweetUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | RetweetCreateOrConnectWithoutUserInput | RetweetCreateOrConnectWithoutUserInput[] | No |
| upsert | RetweetUpsertWithWhereUniqueWithoutUserInput | RetweetUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | RetweetCreateManyUserInputEnvelope | No |
| set | RetweetWhereUniqueInput | RetweetWhereUniqueInput[] | No |
| disconnect | RetweetWhereUniqueInput | RetweetWhereUniqueInput[] | No |
| delete | RetweetWhereUniqueInput | RetweetWhereUniqueInput[] | No |
| connect | RetweetWhereUniqueInput | RetweetWhereUniqueInput[] | No |
| update | RetweetUpdateWithWhereUniqueWithoutUserInput | RetweetUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | RetweetUpdateManyWithWhereWithoutUserInput | RetweetUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | RetweetScalarWhereInput | RetweetScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookmarkCreateWithoutUserInput | BookmarkCreateWithoutUserInput[] | BookmarkUncheckedCreateWithoutUserInput | BookmarkUncheckedCreateWithoutUserInput[] | No |
| connectOrCreate | BookmarkCreateOrConnectWithoutUserInput | BookmarkCreateOrConnectWithoutUserInput[] | No |
| upsert | BookmarkUpsertWithWhereUniqueWithoutUserInput | BookmarkUpsertWithWhereUniqueWithoutUserInput[] | No |
| createMany | BookmarkCreateManyUserInputEnvelope | No |
| set | BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] | No |
| disconnect | BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] | No |
| delete | BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] | No |
| connect | BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] | No |
| update | BookmarkUpdateWithWhereUniqueWithoutUserInput | BookmarkUpdateWithWhereUniqueWithoutUserInput[] | No |
| updateMany | BookmarkUpdateManyWithWhereWithoutUserInput | BookmarkUpdateManyWithWhereWithoutUserInput[] | No |
| deleteMany | BookmarkScalarWhereInput | BookmarkScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MessageCreateWithoutSenderInput | MessageCreateWithoutSenderInput[] | MessageUncheckedCreateWithoutSenderInput | MessageUncheckedCreateWithoutSenderInput[] | No |
| connectOrCreate | MessageCreateOrConnectWithoutSenderInput | MessageCreateOrConnectWithoutSenderInput[] | No |
| upsert | MessageUpsertWithWhereUniqueWithoutSenderInput | MessageUpsertWithWhereUniqueWithoutSenderInput[] | No |
| createMany | MessageCreateManySenderInputEnvelope | No |
| set | MessageWhereUniqueInput | MessageWhereUniqueInput[] | No |
| disconnect | MessageWhereUniqueInput | MessageWhereUniqueInput[] | No |
| delete | MessageWhereUniqueInput | MessageWhereUniqueInput[] | No |
| connect | MessageWhereUniqueInput | MessageWhereUniqueInput[] | No |
| update | MessageUpdateWithWhereUniqueWithoutSenderInput | MessageUpdateWithWhereUniqueWithoutSenderInput[] | No |
| updateMany | MessageUpdateManyWithWhereWithoutSenderInput | MessageUpdateManyWithWhereWithoutSenderInput[] | No |
| deleteMany | MessageScalarWhereInput | MessageScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutFollowersInput | UserUncheckedCreateWithoutFollowersInput | No |
| connectOrCreate | UserCreateOrConnectWithoutFollowersInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutFollowingInput | UserUncheckedCreateWithoutFollowingInput | No |
| connectOrCreate | UserCreateOrConnectWithoutFollowingInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutFollowersInput | UserUncheckedCreateWithoutFollowersInput | No |
| connectOrCreate | UserCreateOrConnectWithoutFollowersInput | No |
| upsert | UserUpsertWithoutFollowersInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutFollowersInput | UserUpdateWithoutFollowersInput | UserUncheckedUpdateWithoutFollowersInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutFollowingInput | UserUncheckedCreateWithoutFollowingInput | No |
| connectOrCreate | UserCreateOrConnectWithoutFollowingInput | No |
| upsert | UserUpsertWithoutFollowingInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutFollowingInput | UserUpdateWithoutFollowingInput | UserUncheckedUpdateWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutTweetsInput | UserUncheckedCreateWithoutTweetsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutTweetsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MediaCreateWithoutTweetInput | MediaCreateWithoutTweetInput[] | MediaUncheckedCreateWithoutTweetInput | MediaUncheckedCreateWithoutTweetInput[] | No |
| connectOrCreate | MediaCreateOrConnectWithoutTweetInput | MediaCreateOrConnectWithoutTweetInput[] | No |
| createMany | MediaCreateManyTweetInputEnvelope | No |
| connect | MediaWhereUniqueInput | MediaWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutTweetInput | LikeCreateWithoutTweetInput[] | LikeUncheckedCreateWithoutTweetInput | LikeUncheckedCreateWithoutTweetInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutTweetInput | LikeCreateOrConnectWithoutTweetInput[] | No |
| createMany | LikeCreateManyTweetInputEnvelope | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | VoteCreateWithoutTweetInput | VoteCreateWithoutTweetInput[] | VoteUncheckedCreateWithoutTweetInput | VoteUncheckedCreateWithoutTweetInput[] | No |
| connectOrCreate | VoteCreateOrConnectWithoutTweetInput | VoteCreateOrConnectWithoutTweetInput[] | No |
| createMany | VoteCreateManyTweetInputEnvelope | No |
| connect | VoteWhereUniqueInput | VoteWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RetweetCreateWithoutTweetInput | RetweetCreateWithoutTweetInput[] | RetweetUncheckedCreateWithoutTweetInput | RetweetUncheckedCreateWithoutTweetInput[] | No |
| connectOrCreate | RetweetCreateOrConnectWithoutTweetInput | RetweetCreateOrConnectWithoutTweetInput[] | No |
| createMany | RetweetCreateManyTweetInputEnvelope | No |
| connect | RetweetWhereUniqueInput | RetweetWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TweetCreateWithoutQuoted_tweetInput | TweetCreateWithoutQuoted_tweetInput[] | TweetUncheckedCreateWithoutQuoted_tweetInput | TweetUncheckedCreateWithoutQuoted_tweetInput[] | No |
| connectOrCreate | TweetCreateOrConnectWithoutQuoted_tweetInput | TweetCreateOrConnectWithoutQuoted_tweetInput[] | No |
| createMany | TweetCreateManyQuoted_tweetInputEnvelope | No |
| connect | TweetWhereUniqueInput | TweetWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TweetCreateWithoutQuotesInput | TweetUncheckedCreateWithoutQuotesInput | No |
| connectOrCreate | TweetCreateOrConnectWithoutQuotesInput | No |
| connect | TweetWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TweetCreateWithoutTweet_commentInput | TweetCreateWithoutTweet_commentInput[] | TweetUncheckedCreateWithoutTweet_commentInput | TweetUncheckedCreateWithoutTweet_commentInput[] | No |
| connectOrCreate | TweetCreateOrConnectWithoutTweet_commentInput | TweetCreateOrConnectWithoutTweet_commentInput[] | No |
| createMany | TweetCreateManyTweet_commentInputEnvelope | No |
| connect | TweetWhereUniqueInput | TweetWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TweetCreateWithoutCommentsInput | TweetUncheckedCreateWithoutCommentsInput | No |
| connectOrCreate | TweetCreateOrConnectWithoutCommentsInput | No |
| connect | TweetWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookmarkCreateWithoutTweetInput | BookmarkCreateWithoutTweetInput[] | BookmarkUncheckedCreateWithoutTweetInput | BookmarkUncheckedCreateWithoutTweetInput[] | No |
| connectOrCreate | BookmarkCreateOrConnectWithoutTweetInput | BookmarkCreateOrConnectWithoutTweetInput[] | No |
| createMany | BookmarkCreateManyTweetInputEnvelope | No |
| connect | BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutPinned_tweetInput | UserCreateWithoutPinned_tweetInput[] | UserUncheckedCreateWithoutPinned_tweetInput | UserUncheckedCreateWithoutPinned_tweetInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutPinned_tweetInput | UserCreateOrConnectWithoutPinned_tweetInput[] | No |
| createMany | UserCreateManyPinned_tweetInputEnvelope | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MediaCreateWithoutTweetInput | MediaCreateWithoutTweetInput[] | MediaUncheckedCreateWithoutTweetInput | MediaUncheckedCreateWithoutTweetInput[] | No |
| connectOrCreate | MediaCreateOrConnectWithoutTweetInput | MediaCreateOrConnectWithoutTweetInput[] | No |
| createMany | MediaCreateManyTweetInputEnvelope | No |
| connect | MediaWhereUniqueInput | MediaWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutTweetInput | LikeCreateWithoutTweetInput[] | LikeUncheckedCreateWithoutTweetInput | LikeUncheckedCreateWithoutTweetInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutTweetInput | LikeCreateOrConnectWithoutTweetInput[] | No |
| createMany | LikeCreateManyTweetInputEnvelope | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | VoteCreateWithoutTweetInput | VoteCreateWithoutTweetInput[] | VoteUncheckedCreateWithoutTweetInput | VoteUncheckedCreateWithoutTweetInput[] | No |
| connectOrCreate | VoteCreateOrConnectWithoutTweetInput | VoteCreateOrConnectWithoutTweetInput[] | No |
| createMany | VoteCreateManyTweetInputEnvelope | No |
| connect | VoteWhereUniqueInput | VoteWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RetweetCreateWithoutTweetInput | RetweetCreateWithoutTweetInput[] | RetweetUncheckedCreateWithoutTweetInput | RetweetUncheckedCreateWithoutTweetInput[] | No |
| connectOrCreate | RetweetCreateOrConnectWithoutTweetInput | RetweetCreateOrConnectWithoutTweetInput[] | No |
| createMany | RetweetCreateManyTweetInputEnvelope | No |
| connect | RetweetWhereUniqueInput | RetweetWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TweetCreateWithoutQuoted_tweetInput | TweetCreateWithoutQuoted_tweetInput[] | TweetUncheckedCreateWithoutQuoted_tweetInput | TweetUncheckedCreateWithoutQuoted_tweetInput[] | No |
| connectOrCreate | TweetCreateOrConnectWithoutQuoted_tweetInput | TweetCreateOrConnectWithoutQuoted_tweetInput[] | No |
| createMany | TweetCreateManyQuoted_tweetInputEnvelope | No |
| connect | TweetWhereUniqueInput | TweetWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TweetCreateWithoutTweet_commentInput | TweetCreateWithoutTweet_commentInput[] | TweetUncheckedCreateWithoutTweet_commentInput | TweetUncheckedCreateWithoutTweet_commentInput[] | No |
| connectOrCreate | TweetCreateOrConnectWithoutTweet_commentInput | TweetCreateOrConnectWithoutTweet_commentInput[] | No |
| createMany | TweetCreateManyTweet_commentInputEnvelope | No |
| connect | TweetWhereUniqueInput | TweetWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookmarkCreateWithoutTweetInput | BookmarkCreateWithoutTweetInput[] | BookmarkUncheckedCreateWithoutTweetInput | BookmarkUncheckedCreateWithoutTweetInput[] | No |
| connectOrCreate | BookmarkCreateOrConnectWithoutTweetInput | BookmarkCreateOrConnectWithoutTweetInput[] | No |
| createMany | BookmarkCreateManyTweetInputEnvelope | No |
| connect | BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutPinned_tweetInput | UserCreateWithoutPinned_tweetInput[] | UserUncheckedCreateWithoutPinned_tweetInput | UserUncheckedCreateWithoutPinned_tweetInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutPinned_tweetInput | UserCreateOrConnectWithoutPinned_tweetInput[] | No |
| createMany | UserCreateManyPinned_tweetInputEnvelope | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutTweetsInput | UserUncheckedCreateWithoutTweetsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutTweetsInput | No |
| upsert | UserUpsertWithoutTweetsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutTweetsInput | UserUpdateWithoutTweetsInput | UserUncheckedUpdateWithoutTweetsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MediaCreateWithoutTweetInput | MediaCreateWithoutTweetInput[] | MediaUncheckedCreateWithoutTweetInput | MediaUncheckedCreateWithoutTweetInput[] | No |
| connectOrCreate | MediaCreateOrConnectWithoutTweetInput | MediaCreateOrConnectWithoutTweetInput[] | No |
| upsert | MediaUpsertWithWhereUniqueWithoutTweetInput | MediaUpsertWithWhereUniqueWithoutTweetInput[] | No |
| createMany | MediaCreateManyTweetInputEnvelope | No |
| set | MediaWhereUniqueInput | MediaWhereUniqueInput[] | No |
| disconnect | MediaWhereUniqueInput | MediaWhereUniqueInput[] | No |
| delete | MediaWhereUniqueInput | MediaWhereUniqueInput[] | No |
| connect | MediaWhereUniqueInput | MediaWhereUniqueInput[] | No |
| update | MediaUpdateWithWhereUniqueWithoutTweetInput | MediaUpdateWithWhereUniqueWithoutTweetInput[] | No |
| updateMany | MediaUpdateManyWithWhereWithoutTweetInput | MediaUpdateManyWithWhereWithoutTweetInput[] | No |
| deleteMany | MediaScalarWhereInput | MediaScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutTweetInput | LikeCreateWithoutTweetInput[] | LikeUncheckedCreateWithoutTweetInput | LikeUncheckedCreateWithoutTweetInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutTweetInput | LikeCreateOrConnectWithoutTweetInput[] | No |
| upsert | LikeUpsertWithWhereUniqueWithoutTweetInput | LikeUpsertWithWhereUniqueWithoutTweetInput[] | No |
| createMany | LikeCreateManyTweetInputEnvelope | No |
| set | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| disconnect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| delete | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| update | LikeUpdateWithWhereUniqueWithoutTweetInput | LikeUpdateWithWhereUniqueWithoutTweetInput[] | No |
| updateMany | LikeUpdateManyWithWhereWithoutTweetInput | LikeUpdateManyWithWhereWithoutTweetInput[] | No |
| deleteMany | LikeScalarWhereInput | LikeScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | VoteCreateWithoutTweetInput | VoteCreateWithoutTweetInput[] | VoteUncheckedCreateWithoutTweetInput | VoteUncheckedCreateWithoutTweetInput[] | No |
| connectOrCreate | VoteCreateOrConnectWithoutTweetInput | VoteCreateOrConnectWithoutTweetInput[] | No |
| upsert | VoteUpsertWithWhereUniqueWithoutTweetInput | VoteUpsertWithWhereUniqueWithoutTweetInput[] | No |
| createMany | VoteCreateManyTweetInputEnvelope | No |
| set | VoteWhereUniqueInput | VoteWhereUniqueInput[] | No |
| disconnect | VoteWhereUniqueInput | VoteWhereUniqueInput[] | No |
| delete | VoteWhereUniqueInput | VoteWhereUniqueInput[] | No |
| connect | VoteWhereUniqueInput | VoteWhereUniqueInput[] | No |
| update | VoteUpdateWithWhereUniqueWithoutTweetInput | VoteUpdateWithWhereUniqueWithoutTweetInput[] | No |
| updateMany | VoteUpdateManyWithWhereWithoutTweetInput | VoteUpdateManyWithWhereWithoutTweetInput[] | No |
| deleteMany | VoteScalarWhereInput | VoteScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RetweetCreateWithoutTweetInput | RetweetCreateWithoutTweetInput[] | RetweetUncheckedCreateWithoutTweetInput | RetweetUncheckedCreateWithoutTweetInput[] | No |
| connectOrCreate | RetweetCreateOrConnectWithoutTweetInput | RetweetCreateOrConnectWithoutTweetInput[] | No |
| upsert | RetweetUpsertWithWhereUniqueWithoutTweetInput | RetweetUpsertWithWhereUniqueWithoutTweetInput[] | No |
| createMany | RetweetCreateManyTweetInputEnvelope | No |
| set | RetweetWhereUniqueInput | RetweetWhereUniqueInput[] | No |
| disconnect | RetweetWhereUniqueInput | RetweetWhereUniqueInput[] | No |
| delete | RetweetWhereUniqueInput | RetweetWhereUniqueInput[] | No |
| connect | RetweetWhereUniqueInput | RetweetWhereUniqueInput[] | No |
| update | RetweetUpdateWithWhereUniqueWithoutTweetInput | RetweetUpdateWithWhereUniqueWithoutTweetInput[] | No |
| updateMany | RetweetUpdateManyWithWhereWithoutTweetInput | RetweetUpdateManyWithWhereWithoutTweetInput[] | No |
| deleteMany | RetweetScalarWhereInput | RetweetScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TweetCreateWithoutQuotesInput | TweetUncheckedCreateWithoutQuotesInput | No |
| connectOrCreate | TweetCreateOrConnectWithoutQuotesInput | No |
| upsert | TweetUpsertWithoutQuotesInput | No |
| disconnect | Boolean | TweetWhereInput | No |
| delete | Boolean | TweetWhereInput | No |
| connect | TweetWhereUniqueInput | No |
| update | TweetUpdateToOneWithWhereWithoutQuotesInput | TweetUpdateWithoutQuotesInput | TweetUncheckedUpdateWithoutQuotesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TweetCreateWithoutCommentsInput | TweetUncheckedCreateWithoutCommentsInput | No |
| connectOrCreate | TweetCreateOrConnectWithoutCommentsInput | No |
| upsert | TweetUpsertWithoutCommentsInput | No |
| disconnect | Boolean | TweetWhereInput | No |
| delete | Boolean | TweetWhereInput | No |
| connect | TweetWhereUniqueInput | No |
| update | TweetUpdateToOneWithWhereWithoutCommentsInput | TweetUpdateWithoutCommentsInput | TweetUncheckedUpdateWithoutCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookmarkCreateWithoutTweetInput | BookmarkCreateWithoutTweetInput[] | BookmarkUncheckedCreateWithoutTweetInput | BookmarkUncheckedCreateWithoutTweetInput[] | No |
| connectOrCreate | BookmarkCreateOrConnectWithoutTweetInput | BookmarkCreateOrConnectWithoutTweetInput[] | No |
| upsert | BookmarkUpsertWithWhereUniqueWithoutTweetInput | BookmarkUpsertWithWhereUniqueWithoutTweetInput[] | No |
| createMany | BookmarkCreateManyTweetInputEnvelope | No |
| set | BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] | No |
| disconnect | BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] | No |
| delete | BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] | No |
| connect | BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] | No |
| update | BookmarkUpdateWithWhereUniqueWithoutTweetInput | BookmarkUpdateWithWhereUniqueWithoutTweetInput[] | No |
| updateMany | BookmarkUpdateManyWithWhereWithoutTweetInput | BookmarkUpdateManyWithWhereWithoutTweetInput[] | No |
| deleteMany | BookmarkScalarWhereInput | BookmarkScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutPinned_tweetInput | UserCreateWithoutPinned_tweetInput[] | UserUncheckedCreateWithoutPinned_tweetInput | UserUncheckedCreateWithoutPinned_tweetInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutPinned_tweetInput | UserCreateOrConnectWithoutPinned_tweetInput[] | No |
| upsert | UserUpsertWithWhereUniqueWithoutPinned_tweetInput | UserUpsertWithWhereUniqueWithoutPinned_tweetInput[] | No |
| createMany | UserCreateManyPinned_tweetInputEnvelope | No |
| set | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| disconnect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| delete | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| update | UserUpdateWithWhereUniqueWithoutPinned_tweetInput | UserUpdateWithWhereUniqueWithoutPinned_tweetInput[] | No |
| updateMany | UserUpdateManyWithWhereWithoutPinned_tweetInput | UserUpdateManyWithWhereWithoutPinned_tweetInput[] | No |
| deleteMany | UserScalarWhereInput | UserScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MediaCreateWithoutTweetInput | MediaCreateWithoutTweetInput[] | MediaUncheckedCreateWithoutTweetInput | MediaUncheckedCreateWithoutTweetInput[] | No |
| connectOrCreate | MediaCreateOrConnectWithoutTweetInput | MediaCreateOrConnectWithoutTweetInput[] | No |
| upsert | MediaUpsertWithWhereUniqueWithoutTweetInput | MediaUpsertWithWhereUniqueWithoutTweetInput[] | No |
| createMany | MediaCreateManyTweetInputEnvelope | No |
| set | MediaWhereUniqueInput | MediaWhereUniqueInput[] | No |
| disconnect | MediaWhereUniqueInput | MediaWhereUniqueInput[] | No |
| delete | MediaWhereUniqueInput | MediaWhereUniqueInput[] | No |
| connect | MediaWhereUniqueInput | MediaWhereUniqueInput[] | No |
| update | MediaUpdateWithWhereUniqueWithoutTweetInput | MediaUpdateWithWhereUniqueWithoutTweetInput[] | No |
| updateMany | MediaUpdateManyWithWhereWithoutTweetInput | MediaUpdateManyWithWhereWithoutTweetInput[] | No |
| deleteMany | MediaScalarWhereInput | MediaScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | LikeCreateWithoutTweetInput | LikeCreateWithoutTweetInput[] | LikeUncheckedCreateWithoutTweetInput | LikeUncheckedCreateWithoutTweetInput[] | No |
| connectOrCreate | LikeCreateOrConnectWithoutTweetInput | LikeCreateOrConnectWithoutTweetInput[] | No |
| upsert | LikeUpsertWithWhereUniqueWithoutTweetInput | LikeUpsertWithWhereUniqueWithoutTweetInput[] | No |
| createMany | LikeCreateManyTweetInputEnvelope | No |
| set | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| disconnect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| delete | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| connect | LikeWhereUniqueInput | LikeWhereUniqueInput[] | No |
| update | LikeUpdateWithWhereUniqueWithoutTweetInput | LikeUpdateWithWhereUniqueWithoutTweetInput[] | No |
| updateMany | LikeUpdateManyWithWhereWithoutTweetInput | LikeUpdateManyWithWhereWithoutTweetInput[] | No |
| deleteMany | LikeScalarWhereInput | LikeScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | VoteCreateWithoutTweetInput | VoteCreateWithoutTweetInput[] | VoteUncheckedCreateWithoutTweetInput | VoteUncheckedCreateWithoutTweetInput[] | No |
| connectOrCreate | VoteCreateOrConnectWithoutTweetInput | VoteCreateOrConnectWithoutTweetInput[] | No |
| upsert | VoteUpsertWithWhereUniqueWithoutTweetInput | VoteUpsertWithWhereUniqueWithoutTweetInput[] | No |
| createMany | VoteCreateManyTweetInputEnvelope | No |
| set | VoteWhereUniqueInput | VoteWhereUniqueInput[] | No |
| disconnect | VoteWhereUniqueInput | VoteWhereUniqueInput[] | No |
| delete | VoteWhereUniqueInput | VoteWhereUniqueInput[] | No |
| connect | VoteWhereUniqueInput | VoteWhereUniqueInput[] | No |
| update | VoteUpdateWithWhereUniqueWithoutTweetInput | VoteUpdateWithWhereUniqueWithoutTweetInput[] | No |
| updateMany | VoteUpdateManyWithWhereWithoutTweetInput | VoteUpdateManyWithWhereWithoutTweetInput[] | No |
| deleteMany | VoteScalarWhereInput | VoteScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | RetweetCreateWithoutTweetInput | RetweetCreateWithoutTweetInput[] | RetweetUncheckedCreateWithoutTweetInput | RetweetUncheckedCreateWithoutTweetInput[] | No |
| connectOrCreate | RetweetCreateOrConnectWithoutTweetInput | RetweetCreateOrConnectWithoutTweetInput[] | No |
| upsert | RetweetUpsertWithWhereUniqueWithoutTweetInput | RetweetUpsertWithWhereUniqueWithoutTweetInput[] | No |
| createMany | RetweetCreateManyTweetInputEnvelope | No |
| set | RetweetWhereUniqueInput | RetweetWhereUniqueInput[] | No |
| disconnect | RetweetWhereUniqueInput | RetweetWhereUniqueInput[] | No |
| delete | RetweetWhereUniqueInput | RetweetWhereUniqueInput[] | No |
| connect | RetweetWhereUniqueInput | RetweetWhereUniqueInput[] | No |
| update | RetweetUpdateWithWhereUniqueWithoutTweetInput | RetweetUpdateWithWhereUniqueWithoutTweetInput[] | No |
| updateMany | RetweetUpdateManyWithWhereWithoutTweetInput | RetweetUpdateManyWithWhereWithoutTweetInput[] | No |
| deleteMany | RetweetScalarWhereInput | RetweetScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | BookmarkCreateWithoutTweetInput | BookmarkCreateWithoutTweetInput[] | BookmarkUncheckedCreateWithoutTweetInput | BookmarkUncheckedCreateWithoutTweetInput[] | No |
| connectOrCreate | BookmarkCreateOrConnectWithoutTweetInput | BookmarkCreateOrConnectWithoutTweetInput[] | No |
| upsert | BookmarkUpsertWithWhereUniqueWithoutTweetInput | BookmarkUpsertWithWhereUniqueWithoutTweetInput[] | No |
| createMany | BookmarkCreateManyTweetInputEnvelope | No |
| set | BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] | No |
| disconnect | BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] | No |
| delete | BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] | No |
| connect | BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] | No |
| update | BookmarkUpdateWithWhereUniqueWithoutTweetInput | BookmarkUpdateWithWhereUniqueWithoutTweetInput[] | No |
| updateMany | BookmarkUpdateManyWithWhereWithoutTweetInput | BookmarkUpdateManyWithWhereWithoutTweetInput[] | No |
| deleteMany | BookmarkScalarWhereInput | BookmarkScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutPinned_tweetInput | UserCreateWithoutPinned_tweetInput[] | UserUncheckedCreateWithoutPinned_tweetInput | UserUncheckedCreateWithoutPinned_tweetInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutPinned_tweetInput | UserCreateOrConnectWithoutPinned_tweetInput[] | No |
| upsert | UserUpsertWithWhereUniqueWithoutPinned_tweetInput | UserUpsertWithWhereUniqueWithoutPinned_tweetInput[] | No |
| createMany | UserCreateManyPinned_tweetInputEnvelope | No |
| set | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| disconnect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| delete | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| update | UserUpdateWithWhereUniqueWithoutPinned_tweetInput | UserUpdateWithWhereUniqueWithoutPinned_tweetInput[] | No |
| updateMany | UserUpdateManyWithWhereWithoutPinned_tweetInput | UserUpdateManyWithWhereWithoutPinned_tweetInput[] | No |
| deleteMany | UserScalarWhereInput | UserScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | TweetCreateWithoutMediaInput | TweetUncheckedCreateWithoutMediaInput | No |
| connectOrCreate | TweetCreateOrConnectWithoutMediaInput | No |
| connect | TweetWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MessageCreateWithoutMediaInput | MessageUncheckedCreateWithoutMediaInput | No |
| connectOrCreate | MessageCreateOrConnectWithoutMediaInput | No |
| connect | MessageWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TweetCreateWithoutMediaInput | TweetUncheckedCreateWithoutMediaInput | No |
| connectOrCreate | TweetCreateOrConnectWithoutMediaInput | No |
| upsert | TweetUpsertWithoutMediaInput | No |
| disconnect | Boolean | TweetWhereInput | No |
| delete | Boolean | TweetWhereInput | No |
| connect | TweetWhereUniqueInput | No |
| update | TweetUpdateToOneWithWhereWithoutMediaInput | TweetUpdateWithoutMediaInput | TweetUncheckedUpdateWithoutMediaInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MessageCreateWithoutMediaInput | MessageUncheckedCreateWithoutMediaInput | No |
| connectOrCreate | MessageCreateOrConnectWithoutMediaInput | No |
| upsert | MessageUpsertWithoutMediaInput | No |
| disconnect | Boolean | MessageWhereInput | No |
| delete | Boolean | MessageWhereInput | No |
| connect | MessageWhereUniqueInput | No |
| update | MessageUpdateToOneWithWhereWithoutMediaInput | MessageUpdateWithoutMediaInput | MessageUncheckedUpdateWithoutMediaInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TweetCreateWithoutLikesInput | TweetUncheckedCreateWithoutLikesInput | No |
| connectOrCreate | TweetCreateOrConnectWithoutLikesInput | No |
| connect | TweetWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutLikesInput | UserUncheckedCreateWithoutLikesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutLikesInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TweetCreateWithoutLikesInput | TweetUncheckedCreateWithoutLikesInput | No |
| connectOrCreate | TweetCreateOrConnectWithoutLikesInput | No |
| upsert | TweetUpsertWithoutLikesInput | No |
| connect | TweetWhereUniqueInput | No |
| update | TweetUpdateToOneWithWhereWithoutLikesInput | TweetUpdateWithoutLikesInput | TweetUncheckedUpdateWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutLikesInput | UserUncheckedCreateWithoutLikesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutLikesInput | No |
| upsert | UserUpsertWithoutLikesInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutLikesInput | UserUpdateWithoutLikesInput | UserUncheckedUpdateWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutReputationsInput | UserUncheckedCreateWithoutReputationsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutReputationsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutReputationsInput | UserUncheckedCreateWithoutReputationsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutReputationsInput | No |
| upsert | UserUpsertWithoutReputationsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutReputationsInput | UserUpdateWithoutReputationsInput | UserUncheckedUpdateWithoutReputationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TweetCreateWithoutVotesInput | TweetUncheckedCreateWithoutVotesInput | No |
| connectOrCreate | TweetCreateOrConnectWithoutVotesInput | No |
| connect | TweetWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutVotesInput | UserUncheckedCreateWithoutVotesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutVotesInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TweetCreateWithoutVotesInput | TweetUncheckedCreateWithoutVotesInput | No |
| connectOrCreate | TweetCreateOrConnectWithoutVotesInput | No |
| upsert | TweetUpsertWithoutVotesInput | No |
| connect | TweetWhereUniqueInput | No |
| update | TweetUpdateToOneWithWhereWithoutVotesInput | TweetUpdateWithoutVotesInput | TweetUncheckedUpdateWithoutVotesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutVotesInput | UserUncheckedCreateWithoutVotesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutVotesInput | No |
| upsert | UserUpsertWithoutVotesInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutVotesInput | UserUpdateWithoutVotesInput | UserUncheckedUpdateWithoutVotesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TweetCreateWithoutRetweetsInput | TweetUncheckedCreateWithoutRetweetsInput | No |
| connectOrCreate | TweetCreateOrConnectWithoutRetweetsInput | No |
| connect | TweetWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutRetweetsInput | UserUncheckedCreateWithoutRetweetsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutRetweetsInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TweetCreateWithoutRetweetsInput | TweetUncheckedCreateWithoutRetweetsInput | No |
| connectOrCreate | TweetCreateOrConnectWithoutRetweetsInput | No |
| upsert | TweetUpsertWithoutRetweetsInput | No |
| connect | TweetWhereUniqueInput | No |
| update | TweetUpdateToOneWithWhereWithoutRetweetsInput | TweetUpdateWithoutRetweetsInput | TweetUncheckedUpdateWithoutRetweetsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutRetweetsInput | UserUncheckedCreateWithoutRetweetsInput | No |
| connectOrCreate | UserCreateOrConnectWithoutRetweetsInput | No |
| upsert | UserUpsertWithoutRetweetsInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutRetweetsInput | UserUpdateWithoutRetweetsInput | UserUncheckedUpdateWithoutRetweetsInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TweetCreateWithoutBookmarksInput | TweetUncheckedCreateWithoutBookmarksInput | No |
| connectOrCreate | TweetCreateOrConnectWithoutBookmarksInput | No |
| connect | TweetWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutBookmarksInput | UserUncheckedCreateWithoutBookmarksInput | No |
| connectOrCreate | UserCreateOrConnectWithoutBookmarksInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | TweetCreateWithoutBookmarksInput | TweetUncheckedCreateWithoutBookmarksInput | No |
| connectOrCreate | TweetCreateOrConnectWithoutBookmarksInput | No |
| upsert | TweetUpsertWithoutBookmarksInput | No |
| connect | TweetWhereUniqueInput | No |
| update | TweetUpdateToOneWithWhereWithoutBookmarksInput | TweetUpdateWithoutBookmarksInput | TweetUncheckedUpdateWithoutBookmarksInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutBookmarksInput | UserUncheckedCreateWithoutBookmarksInput | No |
| connectOrCreate | UserCreateOrConnectWithoutBookmarksInput | No |
| upsert | UserUpsertWithoutBookmarksInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutBookmarksInput | UserUpdateWithoutBookmarksInput | UserUncheckedUpdateWithoutBookmarksInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutReceived_messagesInput | UserUncheckedCreateWithoutReceived_messagesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutReceived_messagesInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutSent_messagesInput | UserUncheckedCreateWithoutSent_messagesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutSent_messagesInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConversationCreateWithoutMessagesInput | ConversationUncheckedCreateWithoutMessagesInput | No |
| connectOrCreate | ConversationCreateOrConnectWithoutMessagesInput | No |
| connect | ConversationWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MediaCreateWithoutMessageInput | MediaCreateWithoutMessageInput[] | MediaUncheckedCreateWithoutMessageInput | MediaUncheckedCreateWithoutMessageInput[] | No |
| connectOrCreate | MediaCreateOrConnectWithoutMessageInput | MediaCreateOrConnectWithoutMessageInput[] | No |
| createMany | MediaCreateManyMessageInputEnvelope | No |
| connect | MediaWhereUniqueInput | MediaWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MediaCreateWithoutMessageInput | MediaCreateWithoutMessageInput[] | MediaUncheckedCreateWithoutMessageInput | MediaUncheckedCreateWithoutMessageInput[] | No |
| connectOrCreate | MediaCreateOrConnectWithoutMessageInput | MediaCreateOrConnectWithoutMessageInput[] | No |
| createMany | MediaCreateManyMessageInputEnvelope | No |
| connect | MediaWhereUniqueInput | MediaWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutReceived_messagesInput | UserUncheckedCreateWithoutReceived_messagesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutReceived_messagesInput | No |
| upsert | UserUpsertWithoutReceived_messagesInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutReceived_messagesInput | UserUpdateWithoutReceived_messagesInput | UserUncheckedUpdateWithoutReceived_messagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutSent_messagesInput | UserUncheckedCreateWithoutSent_messagesInput | No |
| connectOrCreate | UserCreateOrConnectWithoutSent_messagesInput | No |
| upsert | UserUpsertWithoutSent_messagesInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutSent_messagesInput | UserUpdateWithoutSent_messagesInput | UserUncheckedUpdateWithoutSent_messagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | ConversationCreateWithoutMessagesInput | ConversationUncheckedCreateWithoutMessagesInput | No |
| connectOrCreate | ConversationCreateOrConnectWithoutMessagesInput | No |
| upsert | ConversationUpsertWithoutMessagesInput | No |
| connect | ConversationWhereUniqueInput | No |
| update | ConversationUpdateToOneWithWhereWithoutMessagesInput | ConversationUpdateWithoutMessagesInput | ConversationUncheckedUpdateWithoutMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | MediaCreateWithoutMessageInput | MediaCreateWithoutMessageInput[] | MediaUncheckedCreateWithoutMessageInput | MediaUncheckedCreateWithoutMessageInput[] | No |
| connectOrCreate | MediaCreateOrConnectWithoutMessageInput | MediaCreateOrConnectWithoutMessageInput[] | No |
| upsert | MediaUpsertWithWhereUniqueWithoutMessageInput | MediaUpsertWithWhereUniqueWithoutMessageInput[] | No |
| createMany | MediaCreateManyMessageInputEnvelope | No |
| set | MediaWhereUniqueInput | MediaWhereUniqueInput[] | No |
| disconnect | MediaWhereUniqueInput | MediaWhereUniqueInput[] | No |
| delete | MediaWhereUniqueInput | MediaWhereUniqueInput[] | No |
| connect | MediaWhereUniqueInput | MediaWhereUniqueInput[] | No |
| update | MediaUpdateWithWhereUniqueWithoutMessageInput | MediaUpdateWithWhereUniqueWithoutMessageInput[] | No |
| updateMany | MediaUpdateManyWithWhereWithoutMessageInput | MediaUpdateManyWithWhereWithoutMessageInput[] | No |
| deleteMany | MediaScalarWhereInput | MediaScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MediaCreateWithoutMessageInput | MediaCreateWithoutMessageInput[] | MediaUncheckedCreateWithoutMessageInput | MediaUncheckedCreateWithoutMessageInput[] | No |
| connectOrCreate | MediaCreateOrConnectWithoutMessageInput | MediaCreateOrConnectWithoutMessageInput[] | No |
| upsert | MediaUpsertWithWhereUniqueWithoutMessageInput | MediaUpsertWithWhereUniqueWithoutMessageInput[] | No |
| createMany | MediaCreateManyMessageInputEnvelope | No |
| set | MediaWhereUniqueInput | MediaWhereUniqueInput[] | No |
| disconnect | MediaWhereUniqueInput | MediaWhereUniqueInput[] | No |
| delete | MediaWhereUniqueInput | MediaWhereUniqueInput[] | No |
| connect | MediaWhereUniqueInput | MediaWhereUniqueInput[] | No |
| update | MediaUpdateWithWhereUniqueWithoutMessageInput | MediaUpdateWithWhereUniqueWithoutMessageInput[] | No |
| updateMany | MediaUpdateManyWithWhereWithoutMessageInput | MediaUpdateManyWithWhereWithoutMessageInput[] | No |
| deleteMany | MediaScalarWhereInput | MediaScalarWhereInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutConversationsInput | UserCreateWithoutConversationsInput[] | UserUncheckedCreateWithoutConversationsInput | UserUncheckedCreateWithoutConversationsInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutConversationsInput | UserCreateOrConnectWithoutConversationsInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MessageCreateWithoutConversationInput | MessageCreateWithoutConversationInput[] | MessageUncheckedCreateWithoutConversationInput | MessageUncheckedCreateWithoutConversationInput[] | No |
| connectOrCreate | MessageCreateOrConnectWithoutConversationInput | MessageCreateOrConnectWithoutConversationInput[] | No |
| createMany | MessageCreateManyConversationInputEnvelope | No |
| connect | MessageWhereUniqueInput | MessageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutConversationsInput | UserCreateWithoutConversationsInput[] | UserUncheckedCreateWithoutConversationsInput | UserUncheckedCreateWithoutConversationsInput[] | No |
| connectOrCreate | UserCreateOrConnectWithoutConversationsInput | UserCreateOrConnectWithoutConversationsInput[] | No |
| connect | UserWhereUniqueInput | UserWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | MessageCreateWithoutConversationInput | MessageCreateWithoutConversationInput[] | MessageUncheckedCreateWithoutConversationInput | MessageUncheckedCreateWithoutConversationInput[] | No |
| connectOrCreate | MessageCreateOrConnectWithoutConversationInput | MessageCreateOrConnectWithoutConversationInput[] | No |
| createMany | MessageCreateManyConversationInputEnvelope | No |
| connect | MessageWhereUniqueInput | MessageWhereUniqueInput[] | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutCryptoLoginNonceInput | UserUncheckedCreateWithoutCryptoLoginNonceInput | No |
| connectOrCreate | UserCreateOrConnectWithoutCryptoLoginNonceInput | No |
| connect | UserWhereUniqueInput | No |
| Name | Type | Nullable |
|---|---|---|
| create | UserCreateWithoutCryptoLoginNonceInput | UserUncheckedCreateWithoutCryptoLoginNonceInput | No |
| connectOrCreate | UserCreateOrConnectWithoutCryptoLoginNonceInput | No |
| upsert | UserUpsertWithoutCryptoLoginNonceInput | No |
| connect | UserWhereUniqueInput | No |
| update | UserUpdateToOneWithWhereWithoutCryptoLoginNonceInput | UserUpdateWithoutCryptoLoginNonceInput | UserUncheckedUpdateWithoutCryptoLoginNonceInput | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | ListDateTimeFieldRefInput | No |
| notIn | DateTime | ListDateTimeFieldRefInput | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | No |
| in | String | ListStringFieldRefInput | No |
| notIn | String | ListStringFieldRefInput | No |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedStringFilter | No |
| _max | NestedStringFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | ListIntFieldRefInput | No |
| notIn | Int | ListIntFieldRefInput | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | No |
| in | DateTime | ListDateTimeFieldRefInput | No |
| notIn | DateTime | ListDateTimeFieldRefInput | No |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedDateTimeFilter | No |
| _max | NestedDateTimeFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | ListStringFieldRefInput | Null | Yes |
| notIn | String | ListStringFieldRefInput | Null | Yes |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | Null | Yes |
| in | Int | ListIntFieldRefInput | Null | Yes |
| notIn | Int | ListIntFieldRefInput | Null | Yes |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | String | StringFieldRefInput | Null | Yes |
| in | String | ListStringFieldRefInput | Null | Yes |
| notIn | String | ListStringFieldRefInput | Null | Yes |
| lt | String | StringFieldRefInput | No |
| lte | String | StringFieldRefInput | No |
| gt | String | StringFieldRefInput | No |
| gte | String | StringFieldRefInput | No |
| contains | String | StringFieldRefInput | No |
| startsWith | String | StringFieldRefInput | No |
| endsWith | String | StringFieldRefInput | No |
| not | String | NestedStringNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedStringNullableFilter | No |
| _max | NestedStringNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | Null | Yes |
| in | Int | ListIntFieldRefInput | Null | Yes |
| notIn | Int | ListIntFieldRefInput | Null | Yes |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _avg | NestedFloatNullableFilter | No |
| _sum | NestedIntNullableFilter | No |
| _min | NestedIntNullableFilter | No |
| _max | NestedIntNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | Null | Yes |
| in | Float | ListFloatFieldRefInput | Null | Yes |
| notIn | Float | ListFloatFieldRefInput | Null | Yes |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | No |
| not | Boolean | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | Null | Yes |
| in | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| notIn | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeNullableFilter | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| equals | UserRole | EnumUserRoleFieldRefInput | No |
| in | UserRole[] | ListEnumUserRoleFieldRefInput | No |
| notIn | UserRole[] | ListEnumUserRoleFieldRefInput | No |
| not | UserRole | NestedEnumUserRoleFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | No |
| in | Float | ListFloatFieldRefInput | No |
| notIn | Float | ListFloatFieldRefInput | No |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Boolean | BooleanFieldRefInput | No |
| not | Boolean | NestedBoolWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedBoolFilter | No |
| _max | NestedBoolFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | DateTime | DateTimeFieldRefInput | Null | Yes |
| in | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| notIn | DateTime | ListDateTimeFieldRefInput | Null | Yes |
| lt | DateTime | DateTimeFieldRefInput | No |
| lte | DateTime | DateTimeFieldRefInput | No |
| gt | DateTime | DateTimeFieldRefInput | No |
| gte | DateTime | DateTimeFieldRefInput | No |
| not | DateTime | NestedDateTimeNullableWithAggregatesFilter | Null | Yes |
| _count | NestedIntNullableFilter | No |
| _min | NestedDateTimeNullableFilter | No |
| _max | NestedDateTimeNullableFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | UserRole | EnumUserRoleFieldRefInput | No |
| in | UserRole[] | ListEnumUserRoleFieldRefInput | No |
| notIn | UserRole[] | ListEnumUserRoleFieldRefInput | No |
| not | UserRole | NestedEnumUserRoleWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _min | NestedEnumUserRoleFilter | No |
| _max | NestedEnumUserRoleFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Int | IntFieldRefInput | No |
| in | Int | ListIntFieldRefInput | No |
| notIn | Int | ListIntFieldRefInput | No |
| lt | Int | IntFieldRefInput | No |
| lte | Int | IntFieldRefInput | No |
| gt | Int | IntFieldRefInput | No |
| gte | Int | IntFieldRefInput | No |
| not | Int | NestedIntWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedIntFilter | No |
| _min | NestedIntFilter | No |
| _max | NestedIntFilter | No |
| Name | Type | Nullable |
|---|---|---|
| equals | Float | FloatFieldRefInput | No |
| in | Float | ListFloatFieldRefInput | No |
| notIn | Float | ListFloatFieldRefInput | No |
| lt | Float | FloatFieldRefInput | No |
| lte | Float | FloatFieldRefInput | No |
| gt | Float | FloatFieldRefInput | No |
| gte | Float | FloatFieldRefInput | No |
| not | Float | NestedFloatWithAggregatesFilter | No |
| _count | NestedIntFilter | No |
| _avg | NestedFloatFilter | No |
| _sum | NestedFloatFilter | No |
| _min | NestedFloatFilter | No |
| _max | NestedFloatFilter | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | Null | Yes |
| url | String | Null | Yes |
| description | String | Null | Yes |
| detail | String | Null | Yes |
| protected | Boolean | No |
| verified | Boolean | No |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| google_id | String | Null | Yes |
| google_username | String | Null | Yes |
| google_email | String | Null | Yes |
| discord_id | String | Null | Yes |
| discord_username | String | Null | Yes |
| discord_email | String | Null | Yes |
| twitter_id | String | Null | Yes |
| twitter_username | String | Null | Yes |
| twitter_email | String | Null | Yes |
| image | String | Null | Yes |
| password | String | Null | Yes |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | Null | Yes |
| profile_image_url | String | Null | Yes |
| evm_address | String | Null | Yes |
| bech32_address | String | Null | Yes |
| cryptoLoginNonce | CryptoLoginNonceCreateNestedOneWithoutUserInput | No |
| sessions | SessionCreateNestedManyWithoutUserInput | No |
| tweets | TweetCreateNestedManyWithoutAuthorInput | No |
| likes | LikeCreateNestedManyWithoutUserInput | No |
| reputations | ReputationCreateNestedManyWithoutUserInput | No |
| votes | VoteCreateNestedManyWithoutUserInput | No |
| followers | FollowerCreateNestedManyWithoutFollowerInput | No |
| following | FollowerCreateNestedManyWithoutFollowedInput | No |
| retweets | RetweetCreateNestedManyWithoutUserInput | No |
| bookmarks | BookmarkCreateNestedManyWithoutUserInput | No |
| sent_messages | MessageCreateNestedManyWithoutReceiverInput | No |
| received_messages | MessageCreateNestedManyWithoutSenderInput | No |
| conversations | ConversationCreateNestedManyWithoutUsersInput | No |
| pinned_tweet | TweetCreateNestedOneWithoutPinned_by_usersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | Null | Yes |
| url | String | Null | Yes |
| description | String | Null | Yes |
| detail | String | Null | Yes |
| protected | Boolean | No |
| verified | Boolean | No |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| google_id | String | Null | Yes |
| google_username | String | Null | Yes |
| google_email | String | Null | Yes |
| discord_id | String | Null | Yes |
| discord_username | String | Null | Yes |
| discord_email | String | Null | Yes |
| twitter_id | String | Null | Yes |
| twitter_username | String | Null | Yes |
| twitter_email | String | Null | Yes |
| image | String | Null | Yes |
| password | String | Null | Yes |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | Null | Yes |
| profile_image_url | String | Null | Yes |
| evm_address | String | Null | Yes |
| bech32_address | String | Null | Yes |
| pinned_tweet_id | String | Null | Yes |
| cryptoLoginNonce | CryptoLoginNonceUncheckedCreateNestedOneWithoutUserInput | No |
| sessions | SessionUncheckedCreateNestedManyWithoutUserInput | No |
| tweets | TweetUncheckedCreateNestedManyWithoutAuthorInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutUserInput | No |
| reputations | ReputationUncheckedCreateNestedManyWithoutUserInput | No |
| votes | VoteUncheckedCreateNestedManyWithoutUserInput | No |
| followers | FollowerUncheckedCreateNestedManyWithoutFollowerInput | No |
| following | FollowerUncheckedCreateNestedManyWithoutFollowedInput | No |
| retweets | RetweetUncheckedCreateNestedManyWithoutUserInput | No |
| bookmarks | BookmarkUncheckedCreateNestedManyWithoutUserInput | No |
| sent_messages | MessageUncheckedCreateNestedManyWithoutReceiverInput | No |
| received_messages | MessageUncheckedCreateNestedManyWithoutSenderInput | No |
| conversations | ConversationUncheckedCreateNestedManyWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutAccountsInput | UserUncheckedCreateWithoutAccountsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutAccountsInput | UserUncheckedUpdateWithoutAccountsInput | No |
| create | UserCreateWithoutAccountsInput | UserUncheckedCreateWithoutAccountsInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutAccountsInput | UserUncheckedUpdateWithoutAccountsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | Null | Yes |
| url | String | Null | Yes |
| description | String | Null | Yes |
| detail | String | Null | Yes |
| protected | Boolean | No |
| verified | Boolean | No |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| google_id | String | Null | Yes |
| google_username | String | Null | Yes |
| google_email | String | Null | Yes |
| discord_id | String | Null | Yes |
| discord_username | String | Null | Yes |
| discord_email | String | Null | Yes |
| twitter_id | String | Null | Yes |
| twitter_username | String | Null | Yes |
| twitter_email | String | Null | Yes |
| image | String | Null | Yes |
| password | String | Null | Yes |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | Null | Yes |
| profile_image_url | String | Null | Yes |
| evm_address | String | Null | Yes |
| bech32_address | String | Null | Yes |
| cryptoLoginNonce | CryptoLoginNonceCreateNestedOneWithoutUserInput | No |
| accounts | AccountCreateNestedManyWithoutUserInput | No |
| tweets | TweetCreateNestedManyWithoutAuthorInput | No |
| likes | LikeCreateNestedManyWithoutUserInput | No |
| reputations | ReputationCreateNestedManyWithoutUserInput | No |
| votes | VoteCreateNestedManyWithoutUserInput | No |
| followers | FollowerCreateNestedManyWithoutFollowerInput | No |
| following | FollowerCreateNestedManyWithoutFollowedInput | No |
| retweets | RetweetCreateNestedManyWithoutUserInput | No |
| bookmarks | BookmarkCreateNestedManyWithoutUserInput | No |
| sent_messages | MessageCreateNestedManyWithoutReceiverInput | No |
| received_messages | MessageCreateNestedManyWithoutSenderInput | No |
| conversations | ConversationCreateNestedManyWithoutUsersInput | No |
| pinned_tweet | TweetCreateNestedOneWithoutPinned_by_usersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | Null | Yes |
| url | String | Null | Yes |
| description | String | Null | Yes |
| detail | String | Null | Yes |
| protected | Boolean | No |
| verified | Boolean | No |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| google_id | String | Null | Yes |
| google_username | String | Null | Yes |
| google_email | String | Null | Yes |
| discord_id | String | Null | Yes |
| discord_username | String | Null | Yes |
| discord_email | String | Null | Yes |
| twitter_id | String | Null | Yes |
| twitter_username | String | Null | Yes |
| twitter_email | String | Null | Yes |
| image | String | Null | Yes |
| password | String | Null | Yes |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | Null | Yes |
| profile_image_url | String | Null | Yes |
| evm_address | String | Null | Yes |
| bech32_address | String | Null | Yes |
| pinned_tweet_id | String | Null | Yes |
| cryptoLoginNonce | CryptoLoginNonceUncheckedCreateNestedOneWithoutUserInput | No |
| accounts | AccountUncheckedCreateNestedManyWithoutUserInput | No |
| tweets | TweetUncheckedCreateNestedManyWithoutAuthorInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutUserInput | No |
| reputations | ReputationUncheckedCreateNestedManyWithoutUserInput | No |
| votes | VoteUncheckedCreateNestedManyWithoutUserInput | No |
| followers | FollowerUncheckedCreateNestedManyWithoutFollowerInput | No |
| following | FollowerUncheckedCreateNestedManyWithoutFollowedInput | No |
| retweets | RetweetUncheckedCreateNestedManyWithoutUserInput | No |
| bookmarks | BookmarkUncheckedCreateNestedManyWithoutUserInput | No |
| sent_messages | MessageUncheckedCreateNestedManyWithoutReceiverInput | No |
| received_messages | MessageUncheckedCreateNestedManyWithoutSenderInput | No |
| conversations | ConversationUncheckedCreateNestedManyWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutSessionsInput | UserUncheckedCreateWithoutSessionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutSessionsInput | UserUncheckedUpdateWithoutSessionsInput | No |
| create | UserCreateWithoutSessionsInput | UserUncheckedCreateWithoutSessionsInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutSessionsInput | UserUncheckedUpdateWithoutSessionsInput | No |
| Name | Type | Nullable |
|---|---|---|
| nonce | String | No |
| expires | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| nonce | String | No |
| expires | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | CryptoLoginNonceWhereUniqueInput | No |
| create | CryptoLoginNonceCreateWithoutUserInput | CryptoLoginNonceUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| provider | String | No |
| providerAccountId | String | No |
| refresh_token | String | Null | Yes |
| access_token | String | Null | Yes |
| oath_token | String | Null | Yes |
| oauth_token_secret | String | Null | Yes |
| expires_at | Int | Null | Yes |
| token_type | String | Null | Yes |
| scope | String | Null | Yes |
| id_token | String | Null | Yes |
| session_state | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| provider | String | No |
| providerAccountId | String | No |
| refresh_token | String | Null | Yes |
| access_token | String | Null | Yes |
| oath_token | String | Null | Yes |
| oauth_token_secret | String | Null | Yes |
| expires_at | Int | Null | Yes |
| token_type | String | Null | Yes |
| scope | String | Null | Yes |
| id_token | String | Null | Yes |
| session_state | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | AccountWhereUniqueInput | No |
| create | AccountCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | AccountCreateManyUserInput | AccountCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| sessionToken | String | No |
| expires | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| sessionToken | String | No |
| expires | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | SessionWhereUniqueInput | No |
| create | SessionCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | SessionCreateManyUserInput | SessionCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| source | String | No |
| in_reply_to_user_id | String | Null | Yes |
| in_reply_to_screen_name | String | Null | Yes |
| is_quote_status | Boolean | No |
| quoted_status_id | String | Null | Yes |
| quote_count | Int | No |
| reply_count | Int | No |
| retweet_count | Int | No |
| favorite_count | Int | No |
| vote_count | Int | No |
| possibly_sensitive | Boolean | No |
| lang | String | No |
| created_at | DateTime | No |
| media | MediaCreateNestedManyWithoutTweetInput | No |
| likes | LikeCreateNestedManyWithoutTweetInput | No |
| votes | VoteCreateNestedManyWithoutTweetInput | No |
| retweets | RetweetCreateNestedManyWithoutTweetInput | No |
| quotes | TweetCreateNestedManyWithoutQuoted_tweetInput | No |
| quoted_tweet | TweetCreateNestedOneWithoutQuotesInput | No |
| comments | TweetCreateNestedManyWithoutTweet_commentInput | No |
| tweet_comment | TweetCreateNestedOneWithoutCommentsInput | No |
| bookmarks | BookmarkCreateNestedManyWithoutTweetInput | No |
| pinned_by_users | UserCreateNestedManyWithoutPinned_tweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| source | String | No |
| in_reply_to_user_id | String | Null | Yes |
| in_reply_to_screen_name | String | Null | Yes |
| is_quote_status | Boolean | No |
| quoted_status_id | String | Null | Yes |
| quote_count | Int | No |
| reply_count | Int | No |
| retweet_count | Int | No |
| favorite_count | Int | No |
| vote_count | Int | No |
| possibly_sensitive | Boolean | No |
| lang | String | No |
| created_at | DateTime | No |
| quoted_tweet_id | String | Null | Yes |
| in_reply_to_status_id | String | Null | Yes |
| media | MediaUncheckedCreateNestedManyWithoutTweetInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutTweetInput | No |
| votes | VoteUncheckedCreateNestedManyWithoutTweetInput | No |
| retweets | RetweetUncheckedCreateNestedManyWithoutTweetInput | No |
| quotes | TweetUncheckedCreateNestedManyWithoutQuoted_tweetInput | No |
| comments | TweetUncheckedCreateNestedManyWithoutTweet_commentInput | No |
| bookmarks | BookmarkUncheckedCreateNestedManyWithoutTweetInput | No |
| pinned_by_users | UserUncheckedCreateNestedManyWithoutPinned_tweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TweetWhereUniqueInput | No |
| create | TweetCreateWithoutAuthorInput | TweetUncheckedCreateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | TweetCreateManyAuthorInput | TweetCreateManyAuthorInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| created_at | DateTime | No |
| tweet | TweetCreateNestedOneWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| tweet_id | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | LikeWhereUniqueInput | No |
| create | LikeCreateWithoutUserInput | LikeUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | LikeCreateManyUserInput | LikeCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| session_owner_id | String | No |
| reputation_status | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| session_owner_id | String | No |
| reputation_status | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | ReputationWhereUniqueInput | No |
| create | ReputationCreateWithoutUserInput | ReputationUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | ReputationCreateManyUserInput | ReputationCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| vote_status | String | No |
| created_at | DateTime | No |
| tweet | TweetCreateNestedOneWithoutVotesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| tweet_id | String | No |
| vote_status | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | VoteWhereUniqueInput | No |
| create | VoteCreateWithoutUserInput | VoteUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | VoteCreateManyUserInput | VoteCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| created_at | DateTime | No |
| followed | UserCreateNestedOneWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| followed_id | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowerWhereUniqueInput | No |
| create | FollowerCreateWithoutFollowerInput | FollowerUncheckedCreateWithoutFollowerInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | FollowerCreateManyFollowerInput | FollowerCreateManyFollowerInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| created_at | DateTime | No |
| follower | UserCreateNestedOneWithoutFollowersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| follower_id | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowerWhereUniqueInput | No |
| create | FollowerCreateWithoutFollowedInput | FollowerUncheckedCreateWithoutFollowedInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | FollowerCreateManyFollowedInput | FollowerCreateManyFollowedInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| created_at | DateTime | No |
| tweet | TweetCreateNestedOneWithoutRetweetsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| tweet_id | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | RetweetWhereUniqueInput | No |
| create | RetweetCreateWithoutUserInput | RetweetUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | RetweetCreateManyUserInput | RetweetCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| created_at | DateTime | No |
| tweet | TweetCreateNestedOneWithoutBookmarksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| tweet_id | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookmarkWhereUniqueInput | No |
| create | BookmarkCreateWithoutUserInput | BookmarkUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | BookmarkCreateManyUserInput | BookmarkCreateManyUserInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| image | String | Null | Yes |
| created_at | DateTime | No |
| sender | UserCreateNestedOneWithoutReceived_messagesInput | No |
| conversation | ConversationCreateNestedOneWithoutMessagesInput | No |
| media | MediaCreateNestedManyWithoutMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| image | String | Null | Yes |
| created_at | DateTime | No |
| sender_id | String | No |
| conversation_id | String | No |
| media | MediaUncheckedCreateNestedManyWithoutMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MessageWhereUniqueInput | No |
| create | MessageCreateWithoutReceiverInput | MessageUncheckedCreateWithoutReceiverInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | MessageCreateManyReceiverInput | MessageCreateManyReceiverInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| image | String | Null | Yes |
| created_at | DateTime | No |
| receiver | UserCreateNestedOneWithoutSent_messagesInput | No |
| conversation | ConversationCreateNestedOneWithoutMessagesInput | No |
| media | MediaCreateNestedManyWithoutMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| image | String | Null | Yes |
| created_at | DateTime | No |
| receiver_id | String | No |
| conversation_id | String | No |
| media | MediaUncheckedCreateNestedManyWithoutMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MessageWhereUniqueInput | No |
| create | MessageCreateWithoutSenderInput | MessageUncheckedCreateWithoutSenderInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | MessageCreateManySenderInput | MessageCreateManySenderInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| created_at | DateTime | No |
| messages | MessageCreateNestedManyWithoutConversationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| created_at | DateTime | No |
| messages | MessageUncheckedCreateNestedManyWithoutConversationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConversationWhereUniqueInput | No |
| create | ConversationCreateWithoutUsersInput | ConversationUncheckedCreateWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| source | String | No |
| in_reply_to_user_id | String | Null | Yes |
| in_reply_to_screen_name | String | Null | Yes |
| is_quote_status | Boolean | No |
| quoted_status_id | String | Null | Yes |
| quote_count | Int | No |
| reply_count | Int | No |
| retweet_count | Int | No |
| favorite_count | Int | No |
| vote_count | Int | No |
| possibly_sensitive | Boolean | No |
| lang | String | No |
| created_at | DateTime | No |
| author | UserCreateNestedOneWithoutTweetsInput | No |
| media | MediaCreateNestedManyWithoutTweetInput | No |
| likes | LikeCreateNestedManyWithoutTweetInput | No |
| votes | VoteCreateNestedManyWithoutTweetInput | No |
| retweets | RetweetCreateNestedManyWithoutTweetInput | No |
| quotes | TweetCreateNestedManyWithoutQuoted_tweetInput | No |
| quoted_tweet | TweetCreateNestedOneWithoutQuotesInput | No |
| comments | TweetCreateNestedManyWithoutTweet_commentInput | No |
| tweet_comment | TweetCreateNestedOneWithoutCommentsInput | No |
| bookmarks | BookmarkCreateNestedManyWithoutTweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| source | String | No |
| in_reply_to_user_id | String | Null | Yes |
| in_reply_to_screen_name | String | Null | Yes |
| is_quote_status | Boolean | No |
| quoted_status_id | String | Null | Yes |
| quote_count | Int | No |
| reply_count | Int | No |
| retweet_count | Int | No |
| favorite_count | Int | No |
| vote_count | Int | No |
| possibly_sensitive | Boolean | No |
| lang | String | No |
| created_at | DateTime | No |
| author_id | String | No |
| quoted_tweet_id | String | Null | Yes |
| in_reply_to_status_id | String | Null | Yes |
| media | MediaUncheckedCreateNestedManyWithoutTweetInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutTweetInput | No |
| votes | VoteUncheckedCreateNestedManyWithoutTweetInput | No |
| retweets | RetweetUncheckedCreateNestedManyWithoutTweetInput | No |
| quotes | TweetUncheckedCreateNestedManyWithoutQuoted_tweetInput | No |
| comments | TweetUncheckedCreateNestedManyWithoutTweet_commentInput | No |
| bookmarks | BookmarkUncheckedCreateNestedManyWithoutTweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TweetWhereUniqueInput | No |
| create | TweetCreateWithoutPinned_by_usersInput | TweetUncheckedCreateWithoutPinned_by_usersInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | CryptoLoginNonceUpdateWithoutUserInput | CryptoLoginNonceUncheckedUpdateWithoutUserInput | No |
| create | CryptoLoginNonceCreateWithoutUserInput | CryptoLoginNonceUncheckedCreateWithoutUserInput | No |
| where | CryptoLoginNonceWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | CryptoLoginNonceWhereInput | No |
| data | CryptoLoginNonceUpdateWithoutUserInput | CryptoLoginNonceUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| nonce | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| nonce | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AccountWhereUniqueInput | No |
| update | AccountUpdateWithoutUserInput | AccountUncheckedUpdateWithoutUserInput | No |
| create | AccountCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AccountWhereUniqueInput | No |
| data | AccountUpdateWithoutUserInput | AccountUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | AccountScalarWhereInput | No |
| data | AccountUpdateManyMutationInput | AccountUncheckedUpdateManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | AccountScalarWhereInput | AccountScalarWhereInput[] | No |
| OR | AccountScalarWhereInput[] | No |
| NOT | AccountScalarWhereInput | AccountScalarWhereInput[] | No |
| id | StringFilter | String | No |
| userId | StringFilter | String | No |
| type | StringFilter | String | No |
| provider | StringFilter | String | No |
| providerAccountId | StringFilter | String | No |
| refresh_token | StringNullableFilter | String | Null | Yes |
| access_token | StringNullableFilter | String | Null | Yes |
| oath_token | StringNullableFilter | String | Null | Yes |
| oauth_token_secret | StringNullableFilter | String | Null | Yes |
| expires_at | IntNullableFilter | Int | Null | Yes |
| token_type | StringNullableFilter | String | Null | Yes |
| scope | StringNullableFilter | String | Null | Yes |
| id_token | StringNullableFilter | String | Null | Yes |
| session_state | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | SessionWhereUniqueInput | No |
| update | SessionUpdateWithoutUserInput | SessionUncheckedUpdateWithoutUserInput | No |
| create | SessionCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SessionWhereUniqueInput | No |
| data | SessionUpdateWithoutUserInput | SessionUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | SessionScalarWhereInput | No |
| data | SessionUpdateManyMutationInput | SessionUncheckedUpdateManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | SessionScalarWhereInput | SessionScalarWhereInput[] | No |
| OR | SessionScalarWhereInput[] | No |
| NOT | SessionScalarWhereInput | SessionScalarWhereInput[] | No |
| id | StringFilter | String | No |
| sessionToken | StringFilter | String | No |
| expires | DateTimeFilter | DateTime | No |
| userId | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | TweetWhereUniqueInput | No |
| update | TweetUpdateWithoutAuthorInput | TweetUncheckedUpdateWithoutAuthorInput | No |
| create | TweetCreateWithoutAuthorInput | TweetUncheckedCreateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TweetWhereUniqueInput | No |
| data | TweetUpdateWithoutAuthorInput | TweetUncheckedUpdateWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TweetScalarWhereInput | No |
| data | TweetUpdateManyMutationInput | TweetUncheckedUpdateManyWithoutAuthorInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | TweetScalarWhereInput | TweetScalarWhereInput[] | No |
| OR | TweetScalarWhereInput[] | No |
| NOT | TweetScalarWhereInput | TweetScalarWhereInput[] | No |
| id | StringFilter | String | No |
| text | StringNullableFilter | String | Null | Yes |
| source | StringFilter | String | No |
| in_reply_to_user_id | StringNullableFilter | String | Null | Yes |
| in_reply_to_screen_name | StringNullableFilter | String | Null | Yes |
| is_quote_status | BoolFilter | Boolean | No |
| quoted_status_id | StringNullableFilter | String | Null | Yes |
| quote_count | IntFilter | Int | No |
| reply_count | IntFilter | Int | No |
| retweet_count | IntFilter | Int | No |
| favorite_count | IntFilter | Int | No |
| vote_count | IntFilter | Int | No |
| possibly_sensitive | BoolFilter | Boolean | No |
| lang | StringFilter | String | No |
| created_at | DateTimeFilter | DateTime | No |
| author_id | StringFilter | String | No |
| quoted_tweet_id | StringNullableFilter | String | Null | Yes |
| in_reply_to_status_id | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | LikeWhereUniqueInput | No |
| update | LikeUpdateWithoutUserInput | LikeUncheckedUpdateWithoutUserInput | No |
| create | LikeCreateWithoutUserInput | LikeUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LikeWhereUniqueInput | No |
| data | LikeUpdateWithoutUserInput | LikeUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LikeScalarWhereInput | No |
| data | LikeUpdateManyMutationInput | LikeUncheckedUpdateManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | LikeScalarWhereInput | LikeScalarWhereInput[] | No |
| OR | LikeScalarWhereInput[] | No |
| NOT | LikeScalarWhereInput | LikeScalarWhereInput[] | No |
| id | StringFilter | String | No |
| tweet_id | StringFilter | String | No |
| user_id | StringFilter | String | No |
| created_at | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | ReputationWhereUniqueInput | No |
| update | ReputationUpdateWithoutUserInput | ReputationUncheckedUpdateWithoutUserInput | No |
| create | ReputationCreateWithoutUserInput | ReputationUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ReputationWhereUniqueInput | No |
| data | ReputationUpdateWithoutUserInput | ReputationUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ReputationScalarWhereInput | No |
| data | ReputationUpdateManyMutationInput | ReputationUncheckedUpdateManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ReputationScalarWhereInput | ReputationScalarWhereInput[] | No |
| OR | ReputationScalarWhereInput[] | No |
| NOT | ReputationScalarWhereInput | ReputationScalarWhereInput[] | No |
| id | StringFilter | String | No |
| user_id | StringFilter | String | No |
| session_owner_id | StringFilter | String | No |
| reputation_status | StringFilter | String | No |
| created_at | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | VoteWhereUniqueInput | No |
| update | VoteUpdateWithoutUserInput | VoteUncheckedUpdateWithoutUserInput | No |
| create | VoteCreateWithoutUserInput | VoteUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VoteWhereUniqueInput | No |
| data | VoteUpdateWithoutUserInput | VoteUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VoteScalarWhereInput | No |
| data | VoteUpdateManyMutationInput | VoteUncheckedUpdateManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | VoteScalarWhereInput | VoteScalarWhereInput[] | No |
| OR | VoteScalarWhereInput[] | No |
| NOT | VoteScalarWhereInput | VoteScalarWhereInput[] | No |
| id | StringFilter | String | No |
| tweet_id | StringFilter | String | No |
| user_id | StringFilter | String | No |
| vote_status | StringFilter | String | No |
| created_at | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowerWhereUniqueInput | No |
| update | FollowerUpdateWithoutFollowerInput | FollowerUncheckedUpdateWithoutFollowerInput | No |
| create | FollowerCreateWithoutFollowerInput | FollowerUncheckedCreateWithoutFollowerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowerWhereUniqueInput | No |
| data | FollowerUpdateWithoutFollowerInput | FollowerUncheckedUpdateWithoutFollowerInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowerScalarWhereInput | No |
| data | FollowerUpdateManyMutationInput | FollowerUncheckedUpdateManyWithoutFollowerInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | FollowerScalarWhereInput | FollowerScalarWhereInput[] | No |
| OR | FollowerScalarWhereInput[] | No |
| NOT | FollowerScalarWhereInput | FollowerScalarWhereInput[] | No |
| id | StringFilter | String | No |
| follower_id | StringFilter | String | No |
| followed_id | StringFilter | String | No |
| created_at | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowerWhereUniqueInput | No |
| update | FollowerUpdateWithoutFollowedInput | FollowerUncheckedUpdateWithoutFollowedInput | No |
| create | FollowerCreateWithoutFollowedInput | FollowerUncheckedCreateWithoutFollowedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowerWhereUniqueInput | No |
| data | FollowerUpdateWithoutFollowedInput | FollowerUncheckedUpdateWithoutFollowedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | FollowerScalarWhereInput | No |
| data | FollowerUpdateManyMutationInput | FollowerUncheckedUpdateManyWithoutFollowedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RetweetWhereUniqueInput | No |
| update | RetweetUpdateWithoutUserInput | RetweetUncheckedUpdateWithoutUserInput | No |
| create | RetweetCreateWithoutUserInput | RetweetUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RetweetWhereUniqueInput | No |
| data | RetweetUpdateWithoutUserInput | RetweetUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RetweetScalarWhereInput | No |
| data | RetweetUpdateManyMutationInput | RetweetUncheckedUpdateManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | RetweetScalarWhereInput | RetweetScalarWhereInput[] | No |
| OR | RetweetScalarWhereInput[] | No |
| NOT | RetweetScalarWhereInput | RetweetScalarWhereInput[] | No |
| id | StringFilter | String | No |
| tweet_id | StringFilter | String | No |
| user_id | StringFilter | String | No |
| created_at | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookmarkWhereUniqueInput | No |
| update | BookmarkUpdateWithoutUserInput | BookmarkUncheckedUpdateWithoutUserInput | No |
| create | BookmarkCreateWithoutUserInput | BookmarkUncheckedCreateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookmarkWhereUniqueInput | No |
| data | BookmarkUpdateWithoutUserInput | BookmarkUncheckedUpdateWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookmarkScalarWhereInput | No |
| data | BookmarkUpdateManyMutationInput | BookmarkUncheckedUpdateManyWithoutUserInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | BookmarkScalarWhereInput | BookmarkScalarWhereInput[] | No |
| OR | BookmarkScalarWhereInput[] | No |
| NOT | BookmarkScalarWhereInput | BookmarkScalarWhereInput[] | No |
| id | StringFilter | String | No |
| tweet_id | StringFilter | String | No |
| user_id | StringFilter | String | No |
| created_at | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | MessageWhereUniqueInput | No |
| update | MessageUpdateWithoutReceiverInput | MessageUncheckedUpdateWithoutReceiverInput | No |
| create | MessageCreateWithoutReceiverInput | MessageUncheckedCreateWithoutReceiverInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MessageWhereUniqueInput | No |
| data | MessageUpdateWithoutReceiverInput | MessageUncheckedUpdateWithoutReceiverInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MessageScalarWhereInput | No |
| data | MessageUpdateManyMutationInput | MessageUncheckedUpdateManyWithoutReceiverInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | MessageScalarWhereInput | MessageScalarWhereInput[] | No |
| OR | MessageScalarWhereInput[] | No |
| NOT | MessageScalarWhereInput | MessageScalarWhereInput[] | No |
| id | StringFilter | String | No |
| text | StringNullableFilter | String | Null | Yes |
| image | StringNullableFilter | String | Null | Yes |
| created_at | DateTimeFilter | DateTime | No |
| sender_id | StringFilter | String | No |
| receiver_id | StringFilter | String | No |
| conversation_id | StringFilter | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | MessageWhereUniqueInput | No |
| update | MessageUpdateWithoutSenderInput | MessageUncheckedUpdateWithoutSenderInput | No |
| create | MessageCreateWithoutSenderInput | MessageUncheckedCreateWithoutSenderInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MessageWhereUniqueInput | No |
| data | MessageUpdateWithoutSenderInput | MessageUncheckedUpdateWithoutSenderInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MessageScalarWhereInput | No |
| data | MessageUpdateManyMutationInput | MessageUncheckedUpdateManyWithoutSenderInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConversationWhereUniqueInput | No |
| update | ConversationUpdateWithoutUsersInput | ConversationUncheckedUpdateWithoutUsersInput | No |
| create | ConversationCreateWithoutUsersInput | ConversationUncheckedCreateWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConversationWhereUniqueInput | No |
| data | ConversationUpdateWithoutUsersInput | ConversationUncheckedUpdateWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConversationScalarWhereInput | No |
| data | ConversationUpdateManyMutationInput | ConversationUncheckedUpdateManyWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | ConversationScalarWhereInput | ConversationScalarWhereInput[] | No |
| OR | ConversationScalarWhereInput[] | No |
| NOT | ConversationScalarWhereInput | ConversationScalarWhereInput[] | No |
| id | StringFilter | String | No |
| created_at | DateTimeFilter | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| update | TweetUpdateWithoutPinned_by_usersInput | TweetUncheckedUpdateWithoutPinned_by_usersInput | No |
| create | TweetCreateWithoutPinned_by_usersInput | TweetUncheckedCreateWithoutPinned_by_usersInput | No |
| where | TweetWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TweetWhereInput | No |
| data | TweetUpdateWithoutPinned_by_usersInput | TweetUncheckedUpdateWithoutPinned_by_usersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | Null | Yes |
| url | String | Null | Yes |
| description | String | Null | Yes |
| detail | String | Null | Yes |
| protected | Boolean | No |
| verified | Boolean | No |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| google_id | String | Null | Yes |
| google_username | String | Null | Yes |
| google_email | String | Null | Yes |
| discord_id | String | Null | Yes |
| discord_username | String | Null | Yes |
| discord_email | String | Null | Yes |
| twitter_id | String | Null | Yes |
| twitter_username | String | Null | Yes |
| twitter_email | String | Null | Yes |
| image | String | Null | Yes |
| password | String | Null | Yes |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | Null | Yes |
| profile_image_url | String | Null | Yes |
| evm_address | String | Null | Yes |
| bech32_address | String | Null | Yes |
| cryptoLoginNonce | CryptoLoginNonceCreateNestedOneWithoutUserInput | No |
| accounts | AccountCreateNestedManyWithoutUserInput | No |
| sessions | SessionCreateNestedManyWithoutUserInput | No |
| tweets | TweetCreateNestedManyWithoutAuthorInput | No |
| likes | LikeCreateNestedManyWithoutUserInput | No |
| reputations | ReputationCreateNestedManyWithoutUserInput | No |
| votes | VoteCreateNestedManyWithoutUserInput | No |
| following | FollowerCreateNestedManyWithoutFollowedInput | No |
| retweets | RetweetCreateNestedManyWithoutUserInput | No |
| bookmarks | BookmarkCreateNestedManyWithoutUserInput | No |
| sent_messages | MessageCreateNestedManyWithoutReceiverInput | No |
| received_messages | MessageCreateNestedManyWithoutSenderInput | No |
| conversations | ConversationCreateNestedManyWithoutUsersInput | No |
| pinned_tweet | TweetCreateNestedOneWithoutPinned_by_usersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | Null | Yes |
| url | String | Null | Yes |
| description | String | Null | Yes |
| detail | String | Null | Yes |
| protected | Boolean | No |
| verified | Boolean | No |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| google_id | String | Null | Yes |
| google_username | String | Null | Yes |
| google_email | String | Null | Yes |
| discord_id | String | Null | Yes |
| discord_username | String | Null | Yes |
| discord_email | String | Null | Yes |
| twitter_id | String | Null | Yes |
| twitter_username | String | Null | Yes |
| twitter_email | String | Null | Yes |
| image | String | Null | Yes |
| password | String | Null | Yes |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | Null | Yes |
| profile_image_url | String | Null | Yes |
| evm_address | String | Null | Yes |
| bech32_address | String | Null | Yes |
| pinned_tweet_id | String | Null | Yes |
| cryptoLoginNonce | CryptoLoginNonceUncheckedCreateNestedOneWithoutUserInput | No |
| accounts | AccountUncheckedCreateNestedManyWithoutUserInput | No |
| sessions | SessionUncheckedCreateNestedManyWithoutUserInput | No |
| tweets | TweetUncheckedCreateNestedManyWithoutAuthorInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutUserInput | No |
| reputations | ReputationUncheckedCreateNestedManyWithoutUserInput | No |
| votes | VoteUncheckedCreateNestedManyWithoutUserInput | No |
| following | FollowerUncheckedCreateNestedManyWithoutFollowedInput | No |
| retweets | RetweetUncheckedCreateNestedManyWithoutUserInput | No |
| bookmarks | BookmarkUncheckedCreateNestedManyWithoutUserInput | No |
| sent_messages | MessageUncheckedCreateNestedManyWithoutReceiverInput | No |
| received_messages | MessageUncheckedCreateNestedManyWithoutSenderInput | No |
| conversations | ConversationUncheckedCreateNestedManyWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutFollowersInput | UserUncheckedCreateWithoutFollowersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | Null | Yes |
| url | String | Null | Yes |
| description | String | Null | Yes |
| detail | String | Null | Yes |
| protected | Boolean | No |
| verified | Boolean | No |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| google_id | String | Null | Yes |
| google_username | String | Null | Yes |
| google_email | String | Null | Yes |
| discord_id | String | Null | Yes |
| discord_username | String | Null | Yes |
| discord_email | String | Null | Yes |
| twitter_id | String | Null | Yes |
| twitter_username | String | Null | Yes |
| twitter_email | String | Null | Yes |
| image | String | Null | Yes |
| password | String | Null | Yes |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | Null | Yes |
| profile_image_url | String | Null | Yes |
| evm_address | String | Null | Yes |
| bech32_address | String | Null | Yes |
| cryptoLoginNonce | CryptoLoginNonceCreateNestedOneWithoutUserInput | No |
| accounts | AccountCreateNestedManyWithoutUserInput | No |
| sessions | SessionCreateNestedManyWithoutUserInput | No |
| tweets | TweetCreateNestedManyWithoutAuthorInput | No |
| likes | LikeCreateNestedManyWithoutUserInput | No |
| reputations | ReputationCreateNestedManyWithoutUserInput | No |
| votes | VoteCreateNestedManyWithoutUserInput | No |
| followers | FollowerCreateNestedManyWithoutFollowerInput | No |
| retweets | RetweetCreateNestedManyWithoutUserInput | No |
| bookmarks | BookmarkCreateNestedManyWithoutUserInput | No |
| sent_messages | MessageCreateNestedManyWithoutReceiverInput | No |
| received_messages | MessageCreateNestedManyWithoutSenderInput | No |
| conversations | ConversationCreateNestedManyWithoutUsersInput | No |
| pinned_tweet | TweetCreateNestedOneWithoutPinned_by_usersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | Null | Yes |
| url | String | Null | Yes |
| description | String | Null | Yes |
| detail | String | Null | Yes |
| protected | Boolean | No |
| verified | Boolean | No |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| google_id | String | Null | Yes |
| google_username | String | Null | Yes |
| google_email | String | Null | Yes |
| discord_id | String | Null | Yes |
| discord_username | String | Null | Yes |
| discord_email | String | Null | Yes |
| twitter_id | String | Null | Yes |
| twitter_username | String | Null | Yes |
| twitter_email | String | Null | Yes |
| image | String | Null | Yes |
| password | String | Null | Yes |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | Null | Yes |
| profile_image_url | String | Null | Yes |
| evm_address | String | Null | Yes |
| bech32_address | String | Null | Yes |
| pinned_tweet_id | String | Null | Yes |
| cryptoLoginNonce | CryptoLoginNonceUncheckedCreateNestedOneWithoutUserInput | No |
| accounts | AccountUncheckedCreateNestedManyWithoutUserInput | No |
| sessions | SessionUncheckedCreateNestedManyWithoutUserInput | No |
| tweets | TweetUncheckedCreateNestedManyWithoutAuthorInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutUserInput | No |
| reputations | ReputationUncheckedCreateNestedManyWithoutUserInput | No |
| votes | VoteUncheckedCreateNestedManyWithoutUserInput | No |
| followers | FollowerUncheckedCreateNestedManyWithoutFollowerInput | No |
| retweets | RetweetUncheckedCreateNestedManyWithoutUserInput | No |
| bookmarks | BookmarkUncheckedCreateNestedManyWithoutUserInput | No |
| sent_messages | MessageUncheckedCreateNestedManyWithoutReceiverInput | No |
| received_messages | MessageUncheckedCreateNestedManyWithoutSenderInput | No |
| conversations | ConversationUncheckedCreateNestedManyWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutFollowingInput | UserUncheckedCreateWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutFollowersInput | UserUncheckedUpdateWithoutFollowersInput | No |
| create | UserCreateWithoutFollowersInput | UserUncheckedCreateWithoutFollowersInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutFollowersInput | UserUncheckedUpdateWithoutFollowersInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutFollowingInput | UserUncheckedUpdateWithoutFollowingInput | No |
| create | UserCreateWithoutFollowingInput | UserUncheckedCreateWithoutFollowingInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutFollowingInput | UserUncheckedUpdateWithoutFollowingInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | Null | Yes |
| url | String | Null | Yes |
| description | String | Null | Yes |
| detail | String | Null | Yes |
| protected | Boolean | No |
| verified | Boolean | No |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| google_id | String | Null | Yes |
| google_username | String | Null | Yes |
| google_email | String | Null | Yes |
| discord_id | String | Null | Yes |
| discord_username | String | Null | Yes |
| discord_email | String | Null | Yes |
| twitter_id | String | Null | Yes |
| twitter_username | String | Null | Yes |
| twitter_email | String | Null | Yes |
| image | String | Null | Yes |
| password | String | Null | Yes |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | Null | Yes |
| profile_image_url | String | Null | Yes |
| evm_address | String | Null | Yes |
| bech32_address | String | Null | Yes |
| cryptoLoginNonce | CryptoLoginNonceCreateNestedOneWithoutUserInput | No |
| accounts | AccountCreateNestedManyWithoutUserInput | No |
| sessions | SessionCreateNestedManyWithoutUserInput | No |
| likes | LikeCreateNestedManyWithoutUserInput | No |
| reputations | ReputationCreateNestedManyWithoutUserInput | No |
| votes | VoteCreateNestedManyWithoutUserInput | No |
| followers | FollowerCreateNestedManyWithoutFollowerInput | No |
| following | FollowerCreateNestedManyWithoutFollowedInput | No |
| retweets | RetweetCreateNestedManyWithoutUserInput | No |
| bookmarks | BookmarkCreateNestedManyWithoutUserInput | No |
| sent_messages | MessageCreateNestedManyWithoutReceiverInput | No |
| received_messages | MessageCreateNestedManyWithoutSenderInput | No |
| conversations | ConversationCreateNestedManyWithoutUsersInput | No |
| pinned_tweet | TweetCreateNestedOneWithoutPinned_by_usersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | Null | Yes |
| url | String | Null | Yes |
| description | String | Null | Yes |
| detail | String | Null | Yes |
| protected | Boolean | No |
| verified | Boolean | No |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| google_id | String | Null | Yes |
| google_username | String | Null | Yes |
| google_email | String | Null | Yes |
| discord_id | String | Null | Yes |
| discord_username | String | Null | Yes |
| discord_email | String | Null | Yes |
| twitter_id | String | Null | Yes |
| twitter_username | String | Null | Yes |
| twitter_email | String | Null | Yes |
| image | String | Null | Yes |
| password | String | Null | Yes |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | Null | Yes |
| profile_image_url | String | Null | Yes |
| evm_address | String | Null | Yes |
| bech32_address | String | Null | Yes |
| pinned_tweet_id | String | Null | Yes |
| cryptoLoginNonce | CryptoLoginNonceUncheckedCreateNestedOneWithoutUserInput | No |
| accounts | AccountUncheckedCreateNestedManyWithoutUserInput | No |
| sessions | SessionUncheckedCreateNestedManyWithoutUserInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutUserInput | No |
| reputations | ReputationUncheckedCreateNestedManyWithoutUserInput | No |
| votes | VoteUncheckedCreateNestedManyWithoutUserInput | No |
| followers | FollowerUncheckedCreateNestedManyWithoutFollowerInput | No |
| following | FollowerUncheckedCreateNestedManyWithoutFollowedInput | No |
| retweets | RetweetUncheckedCreateNestedManyWithoutUserInput | No |
| bookmarks | BookmarkUncheckedCreateNestedManyWithoutUserInput | No |
| sent_messages | MessageUncheckedCreateNestedManyWithoutReceiverInput | No |
| received_messages | MessageUncheckedCreateNestedManyWithoutSenderInput | No |
| conversations | ConversationUncheckedCreateNestedManyWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutTweetsInput | UserUncheckedCreateWithoutTweetsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| media_url | String | No |
| media_type | String | No |
| media_path | String | No |
| Message | MessageCreateNestedOneWithoutMediaInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| media_url | String | No |
| media_type | String | No |
| media_path | String | No |
| message_id | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | MediaWhereUniqueInput | No |
| create | MediaCreateWithoutTweetInput | MediaUncheckedCreateWithoutTweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | MediaCreateManyTweetInput | MediaCreateManyTweetInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| created_at | DateTime | No |
| user | UserCreateNestedOneWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| user_id | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | LikeWhereUniqueInput | No |
| create | LikeCreateWithoutTweetInput | LikeUncheckedCreateWithoutTweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | LikeCreateManyTweetInput | LikeCreateManyTweetInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| vote_status | String | No |
| created_at | DateTime | No |
| user | UserCreateNestedOneWithoutVotesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| user_id | String | No |
| vote_status | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | VoteWhereUniqueInput | No |
| create | VoteCreateWithoutTweetInput | VoteUncheckedCreateWithoutTweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | VoteCreateManyTweetInput | VoteCreateManyTweetInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| created_at | DateTime | No |
| user | UserCreateNestedOneWithoutRetweetsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| user_id | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | RetweetWhereUniqueInput | No |
| create | RetweetCreateWithoutTweetInput | RetweetUncheckedCreateWithoutTweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | RetweetCreateManyTweetInput | RetweetCreateManyTweetInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| source | String | No |
| in_reply_to_user_id | String | Null | Yes |
| in_reply_to_screen_name | String | Null | Yes |
| is_quote_status | Boolean | No |
| quoted_status_id | String | Null | Yes |
| quote_count | Int | No |
| reply_count | Int | No |
| retweet_count | Int | No |
| favorite_count | Int | No |
| vote_count | Int | No |
| possibly_sensitive | Boolean | No |
| lang | String | No |
| created_at | DateTime | No |
| author | UserCreateNestedOneWithoutTweetsInput | No |
| media | MediaCreateNestedManyWithoutTweetInput | No |
| likes | LikeCreateNestedManyWithoutTweetInput | No |
| votes | VoteCreateNestedManyWithoutTweetInput | No |
| retweets | RetweetCreateNestedManyWithoutTweetInput | No |
| quotes | TweetCreateNestedManyWithoutQuoted_tweetInput | No |
| comments | TweetCreateNestedManyWithoutTweet_commentInput | No |
| tweet_comment | TweetCreateNestedOneWithoutCommentsInput | No |
| bookmarks | BookmarkCreateNestedManyWithoutTweetInput | No |
| pinned_by_users | UserCreateNestedManyWithoutPinned_tweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| source | String | No |
| in_reply_to_user_id | String | Null | Yes |
| in_reply_to_screen_name | String | Null | Yes |
| is_quote_status | Boolean | No |
| quoted_status_id | String | Null | Yes |
| quote_count | Int | No |
| reply_count | Int | No |
| retweet_count | Int | No |
| favorite_count | Int | No |
| vote_count | Int | No |
| possibly_sensitive | Boolean | No |
| lang | String | No |
| created_at | DateTime | No |
| author_id | String | No |
| in_reply_to_status_id | String | Null | Yes |
| media | MediaUncheckedCreateNestedManyWithoutTweetInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutTweetInput | No |
| votes | VoteUncheckedCreateNestedManyWithoutTweetInput | No |
| retweets | RetweetUncheckedCreateNestedManyWithoutTweetInput | No |
| quotes | TweetUncheckedCreateNestedManyWithoutQuoted_tweetInput | No |
| comments | TweetUncheckedCreateNestedManyWithoutTweet_commentInput | No |
| bookmarks | BookmarkUncheckedCreateNestedManyWithoutTweetInput | No |
| pinned_by_users | UserUncheckedCreateNestedManyWithoutPinned_tweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TweetWhereUniqueInput | No |
| create | TweetCreateWithoutQuoted_tweetInput | TweetUncheckedCreateWithoutQuoted_tweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | TweetCreateManyQuoted_tweetInput | TweetCreateManyQuoted_tweetInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| source | String | No |
| in_reply_to_user_id | String | Null | Yes |
| in_reply_to_screen_name | String | Null | Yes |
| is_quote_status | Boolean | No |
| quoted_status_id | String | Null | Yes |
| quote_count | Int | No |
| reply_count | Int | No |
| retweet_count | Int | No |
| favorite_count | Int | No |
| vote_count | Int | No |
| possibly_sensitive | Boolean | No |
| lang | String | No |
| created_at | DateTime | No |
| author | UserCreateNestedOneWithoutTweetsInput | No |
| media | MediaCreateNestedManyWithoutTweetInput | No |
| likes | LikeCreateNestedManyWithoutTweetInput | No |
| votes | VoteCreateNestedManyWithoutTweetInput | No |
| retweets | RetweetCreateNestedManyWithoutTweetInput | No |
| quoted_tweet | TweetCreateNestedOneWithoutQuotesInput | No |
| comments | TweetCreateNestedManyWithoutTweet_commentInput | No |
| tweet_comment | TweetCreateNestedOneWithoutCommentsInput | No |
| bookmarks | BookmarkCreateNestedManyWithoutTweetInput | No |
| pinned_by_users | UserCreateNestedManyWithoutPinned_tweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| source | String | No |
| in_reply_to_user_id | String | Null | Yes |
| in_reply_to_screen_name | String | Null | Yes |
| is_quote_status | Boolean | No |
| quoted_status_id | String | Null | Yes |
| quote_count | Int | No |
| reply_count | Int | No |
| retweet_count | Int | No |
| favorite_count | Int | No |
| vote_count | Int | No |
| possibly_sensitive | Boolean | No |
| lang | String | No |
| created_at | DateTime | No |
| author_id | String | No |
| quoted_tweet_id | String | Null | Yes |
| in_reply_to_status_id | String | Null | Yes |
| media | MediaUncheckedCreateNestedManyWithoutTweetInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutTweetInput | No |
| votes | VoteUncheckedCreateNestedManyWithoutTweetInput | No |
| retweets | RetweetUncheckedCreateNestedManyWithoutTweetInput | No |
| comments | TweetUncheckedCreateNestedManyWithoutTweet_commentInput | No |
| bookmarks | BookmarkUncheckedCreateNestedManyWithoutTweetInput | No |
| pinned_by_users | UserUncheckedCreateNestedManyWithoutPinned_tweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TweetWhereUniqueInput | No |
| create | TweetCreateWithoutQuotesInput | TweetUncheckedCreateWithoutQuotesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| source | String | No |
| in_reply_to_user_id | String | Null | Yes |
| in_reply_to_screen_name | String | Null | Yes |
| is_quote_status | Boolean | No |
| quoted_status_id | String | Null | Yes |
| quote_count | Int | No |
| reply_count | Int | No |
| retweet_count | Int | No |
| favorite_count | Int | No |
| vote_count | Int | No |
| possibly_sensitive | Boolean | No |
| lang | String | No |
| created_at | DateTime | No |
| author | UserCreateNestedOneWithoutTweetsInput | No |
| media | MediaCreateNestedManyWithoutTweetInput | No |
| likes | LikeCreateNestedManyWithoutTweetInput | No |
| votes | VoteCreateNestedManyWithoutTweetInput | No |
| retweets | RetweetCreateNestedManyWithoutTweetInput | No |
| quotes | TweetCreateNestedManyWithoutQuoted_tweetInput | No |
| quoted_tweet | TweetCreateNestedOneWithoutQuotesInput | No |
| comments | TweetCreateNestedManyWithoutTweet_commentInput | No |
| bookmarks | BookmarkCreateNestedManyWithoutTweetInput | No |
| pinned_by_users | UserCreateNestedManyWithoutPinned_tweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| source | String | No |
| in_reply_to_user_id | String | Null | Yes |
| in_reply_to_screen_name | String | Null | Yes |
| is_quote_status | Boolean | No |
| quoted_status_id | String | Null | Yes |
| quote_count | Int | No |
| reply_count | Int | No |
| retweet_count | Int | No |
| favorite_count | Int | No |
| vote_count | Int | No |
| possibly_sensitive | Boolean | No |
| lang | String | No |
| created_at | DateTime | No |
| author_id | String | No |
| quoted_tweet_id | String | Null | Yes |
| media | MediaUncheckedCreateNestedManyWithoutTweetInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutTweetInput | No |
| votes | VoteUncheckedCreateNestedManyWithoutTweetInput | No |
| retweets | RetweetUncheckedCreateNestedManyWithoutTweetInput | No |
| quotes | TweetUncheckedCreateNestedManyWithoutQuoted_tweetInput | No |
| comments | TweetUncheckedCreateNestedManyWithoutTweet_commentInput | No |
| bookmarks | BookmarkUncheckedCreateNestedManyWithoutTweetInput | No |
| pinned_by_users | UserUncheckedCreateNestedManyWithoutPinned_tweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TweetWhereUniqueInput | No |
| create | TweetCreateWithoutTweet_commentInput | TweetUncheckedCreateWithoutTweet_commentInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | TweetCreateManyTweet_commentInput | TweetCreateManyTweet_commentInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| source | String | No |
| in_reply_to_user_id | String | Null | Yes |
| in_reply_to_screen_name | String | Null | Yes |
| is_quote_status | Boolean | No |
| quoted_status_id | String | Null | Yes |
| quote_count | Int | No |
| reply_count | Int | No |
| retweet_count | Int | No |
| favorite_count | Int | No |
| vote_count | Int | No |
| possibly_sensitive | Boolean | No |
| lang | String | No |
| created_at | DateTime | No |
| author | UserCreateNestedOneWithoutTweetsInput | No |
| media | MediaCreateNestedManyWithoutTweetInput | No |
| likes | LikeCreateNestedManyWithoutTweetInput | No |
| votes | VoteCreateNestedManyWithoutTweetInput | No |
| retweets | RetweetCreateNestedManyWithoutTweetInput | No |
| quotes | TweetCreateNestedManyWithoutQuoted_tweetInput | No |
| quoted_tweet | TweetCreateNestedOneWithoutQuotesInput | No |
| tweet_comment | TweetCreateNestedOneWithoutCommentsInput | No |
| bookmarks | BookmarkCreateNestedManyWithoutTweetInput | No |
| pinned_by_users | UserCreateNestedManyWithoutPinned_tweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| source | String | No |
| in_reply_to_user_id | String | Null | Yes |
| in_reply_to_screen_name | String | Null | Yes |
| is_quote_status | Boolean | No |
| quoted_status_id | String | Null | Yes |
| quote_count | Int | No |
| reply_count | Int | No |
| retweet_count | Int | No |
| favorite_count | Int | No |
| vote_count | Int | No |
| possibly_sensitive | Boolean | No |
| lang | String | No |
| created_at | DateTime | No |
| author_id | String | No |
| quoted_tweet_id | String | Null | Yes |
| in_reply_to_status_id | String | Null | Yes |
| media | MediaUncheckedCreateNestedManyWithoutTweetInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutTweetInput | No |
| votes | VoteUncheckedCreateNestedManyWithoutTweetInput | No |
| retweets | RetweetUncheckedCreateNestedManyWithoutTweetInput | No |
| quotes | TweetUncheckedCreateNestedManyWithoutQuoted_tweetInput | No |
| bookmarks | BookmarkUncheckedCreateNestedManyWithoutTweetInput | No |
| pinned_by_users | UserUncheckedCreateNestedManyWithoutPinned_tweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TweetWhereUniqueInput | No |
| create | TweetCreateWithoutCommentsInput | TweetUncheckedCreateWithoutCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| created_at | DateTime | No |
| user | UserCreateNestedOneWithoutBookmarksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| user_id | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookmarkWhereUniqueInput | No |
| create | BookmarkCreateWithoutTweetInput | BookmarkUncheckedCreateWithoutTweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | BookmarkCreateManyTweetInput | BookmarkCreateManyTweetInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | Null | Yes |
| url | String | Null | Yes |
| description | String | Null | Yes |
| detail | String | Null | Yes |
| protected | Boolean | No |
| verified | Boolean | No |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| google_id | String | Null | Yes |
| google_username | String | Null | Yes |
| google_email | String | Null | Yes |
| discord_id | String | Null | Yes |
| discord_username | String | Null | Yes |
| discord_email | String | Null | Yes |
| twitter_id | String | Null | Yes |
| twitter_username | String | Null | Yes |
| twitter_email | String | Null | Yes |
| image | String | Null | Yes |
| password | String | Null | Yes |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | Null | Yes |
| profile_image_url | String | Null | Yes |
| evm_address | String | Null | Yes |
| bech32_address | String | Null | Yes |
| cryptoLoginNonce | CryptoLoginNonceCreateNestedOneWithoutUserInput | No |
| accounts | AccountCreateNestedManyWithoutUserInput | No |
| sessions | SessionCreateNestedManyWithoutUserInput | No |
| tweets | TweetCreateNestedManyWithoutAuthorInput | No |
| likes | LikeCreateNestedManyWithoutUserInput | No |
| reputations | ReputationCreateNestedManyWithoutUserInput | No |
| votes | VoteCreateNestedManyWithoutUserInput | No |
| followers | FollowerCreateNestedManyWithoutFollowerInput | No |
| following | FollowerCreateNestedManyWithoutFollowedInput | No |
| retweets | RetweetCreateNestedManyWithoutUserInput | No |
| bookmarks | BookmarkCreateNestedManyWithoutUserInput | No |
| sent_messages | MessageCreateNestedManyWithoutReceiverInput | No |
| received_messages | MessageCreateNestedManyWithoutSenderInput | No |
| conversations | ConversationCreateNestedManyWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | Null | Yes |
| url | String | Null | Yes |
| description | String | Null | Yes |
| detail | String | Null | Yes |
| protected | Boolean | No |
| verified | Boolean | No |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| google_id | String | Null | Yes |
| google_username | String | Null | Yes |
| google_email | String | Null | Yes |
| discord_id | String | Null | Yes |
| discord_username | String | Null | Yes |
| discord_email | String | Null | Yes |
| twitter_id | String | Null | Yes |
| twitter_username | String | Null | Yes |
| twitter_email | String | Null | Yes |
| image | String | Null | Yes |
| password | String | Null | Yes |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | Null | Yes |
| profile_image_url | String | Null | Yes |
| evm_address | String | Null | Yes |
| bech32_address | String | Null | Yes |
| cryptoLoginNonce | CryptoLoginNonceUncheckedCreateNestedOneWithoutUserInput | No |
| accounts | AccountUncheckedCreateNestedManyWithoutUserInput | No |
| sessions | SessionUncheckedCreateNestedManyWithoutUserInput | No |
| tweets | TweetUncheckedCreateNestedManyWithoutAuthorInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutUserInput | No |
| reputations | ReputationUncheckedCreateNestedManyWithoutUserInput | No |
| votes | VoteUncheckedCreateNestedManyWithoutUserInput | No |
| followers | FollowerUncheckedCreateNestedManyWithoutFollowerInput | No |
| following | FollowerUncheckedCreateNestedManyWithoutFollowedInput | No |
| retweets | RetweetUncheckedCreateNestedManyWithoutUserInput | No |
| bookmarks | BookmarkUncheckedCreateNestedManyWithoutUserInput | No |
| sent_messages | MessageUncheckedCreateNestedManyWithoutReceiverInput | No |
| received_messages | MessageUncheckedCreateNestedManyWithoutSenderInput | No |
| conversations | ConversationUncheckedCreateNestedManyWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutPinned_tweetInput | UserUncheckedCreateWithoutPinned_tweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | UserCreateManyPinned_tweetInput | UserCreateManyPinned_tweetInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutTweetsInput | UserUncheckedUpdateWithoutTweetsInput | No |
| create | UserCreateWithoutTweetsInput | UserUncheckedCreateWithoutTweetsInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutTweetsInput | UserUncheckedUpdateWithoutTweetsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MediaWhereUniqueInput | No |
| update | MediaUpdateWithoutTweetInput | MediaUncheckedUpdateWithoutTweetInput | No |
| create | MediaCreateWithoutTweetInput | MediaUncheckedCreateWithoutTweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MediaWhereUniqueInput | No |
| data | MediaUpdateWithoutTweetInput | MediaUncheckedUpdateWithoutTweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MediaScalarWhereInput | No |
| data | MediaUpdateManyMutationInput | MediaUncheckedUpdateManyWithoutTweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | MediaScalarWhereInput | MediaScalarWhereInput[] | No |
| OR | MediaScalarWhereInput[] | No |
| NOT | MediaScalarWhereInput | MediaScalarWhereInput[] | No |
| id | StringFilter | String | No |
| media_url | StringFilter | String | No |
| media_type | StringFilter | String | No |
| media_path | StringFilter | String | No |
| tweet_id | StringNullableFilter | String | Null | Yes |
| message_id | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | LikeWhereUniqueInput | No |
| update | LikeUpdateWithoutTweetInput | LikeUncheckedUpdateWithoutTweetInput | No |
| create | LikeCreateWithoutTweetInput | LikeUncheckedCreateWithoutTweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LikeWhereUniqueInput | No |
| data | LikeUpdateWithoutTweetInput | LikeUncheckedUpdateWithoutTweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | LikeScalarWhereInput | No |
| data | LikeUpdateManyMutationInput | LikeUncheckedUpdateManyWithoutTweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VoteWhereUniqueInput | No |
| update | VoteUpdateWithoutTweetInput | VoteUncheckedUpdateWithoutTweetInput | No |
| create | VoteCreateWithoutTweetInput | VoteUncheckedCreateWithoutTweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VoteWhereUniqueInput | No |
| data | VoteUpdateWithoutTweetInput | VoteUncheckedUpdateWithoutTweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | VoteScalarWhereInput | No |
| data | VoteUpdateManyMutationInput | VoteUncheckedUpdateManyWithoutTweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RetweetWhereUniqueInput | No |
| update | RetweetUpdateWithoutTweetInput | RetweetUncheckedUpdateWithoutTweetInput | No |
| create | RetweetCreateWithoutTweetInput | RetweetUncheckedCreateWithoutTweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RetweetWhereUniqueInput | No |
| data | RetweetUpdateWithoutTweetInput | RetweetUncheckedUpdateWithoutTweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | RetweetScalarWhereInput | No |
| data | RetweetUpdateManyMutationInput | RetweetUncheckedUpdateManyWithoutTweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TweetWhereUniqueInput | No |
| update | TweetUpdateWithoutQuoted_tweetInput | TweetUncheckedUpdateWithoutQuoted_tweetInput | No |
| create | TweetCreateWithoutQuoted_tweetInput | TweetUncheckedCreateWithoutQuoted_tweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TweetWhereUniqueInput | No |
| data | TweetUpdateWithoutQuoted_tweetInput | TweetUncheckedUpdateWithoutQuoted_tweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TweetScalarWhereInput | No |
| data | TweetUpdateManyMutationInput | TweetUncheckedUpdateManyWithoutQuoted_tweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | TweetUpdateWithoutQuotesInput | TweetUncheckedUpdateWithoutQuotesInput | No |
| create | TweetCreateWithoutQuotesInput | TweetUncheckedCreateWithoutQuotesInput | No |
| where | TweetWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TweetWhereInput | No |
| data | TweetUpdateWithoutQuotesInput | TweetUncheckedUpdateWithoutQuotesInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TweetWhereUniqueInput | No |
| update | TweetUpdateWithoutTweet_commentInput | TweetUncheckedUpdateWithoutTweet_commentInput | No |
| create | TweetCreateWithoutTweet_commentInput | TweetUncheckedCreateWithoutTweet_commentInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TweetWhereUniqueInput | No |
| data | TweetUpdateWithoutTweet_commentInput | TweetUncheckedUpdateWithoutTweet_commentInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TweetScalarWhereInput | No |
| data | TweetUpdateManyMutationInput | TweetUncheckedUpdateManyWithoutTweet_commentInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | TweetUpdateWithoutCommentsInput | TweetUncheckedUpdateWithoutCommentsInput | No |
| create | TweetCreateWithoutCommentsInput | TweetUncheckedCreateWithoutCommentsInput | No |
| where | TweetWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TweetWhereInput | No |
| data | TweetUpdateWithoutCommentsInput | TweetUncheckedUpdateWithoutCommentsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookmarkWhereUniqueInput | No |
| update | BookmarkUpdateWithoutTweetInput | BookmarkUncheckedUpdateWithoutTweetInput | No |
| create | BookmarkCreateWithoutTweetInput | BookmarkUncheckedCreateWithoutTweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookmarkWhereUniqueInput | No |
| data | BookmarkUpdateWithoutTweetInput | BookmarkUncheckedUpdateWithoutTweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | BookmarkScalarWhereInput | No |
| data | BookmarkUpdateManyMutationInput | BookmarkUncheckedUpdateManyWithoutTweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| update | UserUpdateWithoutPinned_tweetInput | UserUncheckedUpdateWithoutPinned_tweetInput | No |
| create | UserCreateWithoutPinned_tweetInput | UserUncheckedCreateWithoutPinned_tweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| data | UserUpdateWithoutPinned_tweetInput | UserUncheckedUpdateWithoutPinned_tweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserScalarWhereInput | No |
| data | UserUpdateManyMutationInput | UserUncheckedUpdateManyWithoutPinned_tweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| AND | UserScalarWhereInput | UserScalarWhereInput[] | No |
| OR | UserScalarWhereInput[] | No |
| NOT | UserScalarWhereInput | UserScalarWhereInput[] | No |
| id | StringFilter | String | No |
| name | StringFilter | String | No |
| screen_name | StringFilter | String | No |
| location | StringNullableFilter | String | Null | Yes |
| url | StringNullableFilter | String | Null | Yes |
| description | StringNullableFilter | String | Null | Yes |
| detail | StringNullableFilter | String | Null | Yes |
| protected | BoolFilter | Boolean | No |
| verified | BoolFilter | Boolean | No |
| StringNullableFilter | String | Null | Yes | |
| emailVerified | DateTimeNullableFilter | DateTime | Null | Yes |
| google_id | StringNullableFilter | String | Null | Yes |
| google_username | StringNullableFilter | String | Null | Yes |
| google_email | StringNullableFilter | String | Null | Yes |
| discord_id | StringNullableFilter | String | Null | Yes |
| discord_username | StringNullableFilter | String | Null | Yes |
| discord_email | StringNullableFilter | String | Null | Yes |
| twitter_id | StringNullableFilter | String | Null | Yes |
| twitter_username | StringNullableFilter | String | Null | Yes |
| twitter_email | StringNullableFilter | String | Null | Yes |
| image | StringNullableFilter | String | Null | Yes |
| password | StringNullableFilter | String | Null | Yes |
| role | EnumUserRoleFilter | UserRole | No |
| created_at | DateTimeFilter | DateTime | No |
| followers_count | IntFilter | Int | No |
| friends_count | IntFilter | Int | No |
| favorites_count | IntFilter | Int | No |
| statuses_count | IntFilter | Int | No |
| reputation_count | FloatFilter | Float | No |
| normalized_reputation | IntFilter | Int | No |
| profile_banner_url | StringNullableFilter | String | Null | Yes |
| profile_image_url | StringNullableFilter | String | Null | Yes |
| evm_address | StringNullableFilter | String | Null | Yes |
| bech32_address | StringNullableFilter | String | Null | Yes |
| pinned_tweet_id | StringNullableFilter | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| source | String | No |
| in_reply_to_user_id | String | Null | Yes |
| in_reply_to_screen_name | String | Null | Yes |
| is_quote_status | Boolean | No |
| quoted_status_id | String | Null | Yes |
| quote_count | Int | No |
| reply_count | Int | No |
| retweet_count | Int | No |
| favorite_count | Int | No |
| vote_count | Int | No |
| possibly_sensitive | Boolean | No |
| lang | String | No |
| created_at | DateTime | No |
| author | UserCreateNestedOneWithoutTweetsInput | No |
| likes | LikeCreateNestedManyWithoutTweetInput | No |
| votes | VoteCreateNestedManyWithoutTweetInput | No |
| retweets | RetweetCreateNestedManyWithoutTweetInput | No |
| quotes | TweetCreateNestedManyWithoutQuoted_tweetInput | No |
| quoted_tweet | TweetCreateNestedOneWithoutQuotesInput | No |
| comments | TweetCreateNestedManyWithoutTweet_commentInput | No |
| tweet_comment | TweetCreateNestedOneWithoutCommentsInput | No |
| bookmarks | BookmarkCreateNestedManyWithoutTweetInput | No |
| pinned_by_users | UserCreateNestedManyWithoutPinned_tweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| source | String | No |
| in_reply_to_user_id | String | Null | Yes |
| in_reply_to_screen_name | String | Null | Yes |
| is_quote_status | Boolean | No |
| quoted_status_id | String | Null | Yes |
| quote_count | Int | No |
| reply_count | Int | No |
| retweet_count | Int | No |
| favorite_count | Int | No |
| vote_count | Int | No |
| possibly_sensitive | Boolean | No |
| lang | String | No |
| created_at | DateTime | No |
| author_id | String | No |
| quoted_tweet_id | String | Null | Yes |
| in_reply_to_status_id | String | Null | Yes |
| likes | LikeUncheckedCreateNestedManyWithoutTweetInput | No |
| votes | VoteUncheckedCreateNestedManyWithoutTweetInput | No |
| retweets | RetweetUncheckedCreateNestedManyWithoutTweetInput | No |
| quotes | TweetUncheckedCreateNestedManyWithoutQuoted_tweetInput | No |
| comments | TweetUncheckedCreateNestedManyWithoutTweet_commentInput | No |
| bookmarks | BookmarkUncheckedCreateNestedManyWithoutTweetInput | No |
| pinned_by_users | UserUncheckedCreateNestedManyWithoutPinned_tweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TweetWhereUniqueInput | No |
| create | TweetCreateWithoutMediaInput | TweetUncheckedCreateWithoutMediaInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| image | String | Null | Yes |
| created_at | DateTime | No |
| sender | UserCreateNestedOneWithoutReceived_messagesInput | No |
| receiver | UserCreateNestedOneWithoutSent_messagesInput | No |
| conversation | ConversationCreateNestedOneWithoutMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| image | String | Null | Yes |
| created_at | DateTime | No |
| sender_id | String | No |
| receiver_id | String | No |
| conversation_id | String | No |
| Name | Type | Nullable |
|---|---|---|
| where | MessageWhereUniqueInput | No |
| create | MessageCreateWithoutMediaInput | MessageUncheckedCreateWithoutMediaInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | TweetUpdateWithoutMediaInput | TweetUncheckedUpdateWithoutMediaInput | No |
| create | TweetCreateWithoutMediaInput | TweetUncheckedCreateWithoutMediaInput | No |
| where | TweetWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TweetWhereInput | No |
| data | TweetUpdateWithoutMediaInput | TweetUncheckedUpdateWithoutMediaInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | MessageUpdateWithoutMediaInput | MessageUncheckedUpdateWithoutMediaInput | No |
| create | MessageCreateWithoutMediaInput | MessageUncheckedCreateWithoutMediaInput | No |
| where | MessageWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MessageWhereInput | No |
| data | MessageUpdateWithoutMediaInput | MessageUncheckedUpdateWithoutMediaInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| text | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| sender | UserUpdateOneRequiredWithoutReceived_messagesNestedInput | No |
| receiver | UserUpdateOneRequiredWithoutSent_messagesNestedInput | No |
| conversation | ConversationUpdateOneRequiredWithoutMessagesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| text | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| sender_id | String | StringFieldUpdateOperationsInput | No |
| receiver_id | String | StringFieldUpdateOperationsInput | No |
| conversation_id | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| source | String | No |
| in_reply_to_user_id | String | Null | Yes |
| in_reply_to_screen_name | String | Null | Yes |
| is_quote_status | Boolean | No |
| quoted_status_id | String | Null | Yes |
| quote_count | Int | No |
| reply_count | Int | No |
| retweet_count | Int | No |
| favorite_count | Int | No |
| vote_count | Int | No |
| possibly_sensitive | Boolean | No |
| lang | String | No |
| created_at | DateTime | No |
| author | UserCreateNestedOneWithoutTweetsInput | No |
| media | MediaCreateNestedManyWithoutTweetInput | No |
| votes | VoteCreateNestedManyWithoutTweetInput | No |
| retweets | RetweetCreateNestedManyWithoutTweetInput | No |
| quotes | TweetCreateNestedManyWithoutQuoted_tweetInput | No |
| quoted_tweet | TweetCreateNestedOneWithoutQuotesInput | No |
| comments | TweetCreateNestedManyWithoutTweet_commentInput | No |
| tweet_comment | TweetCreateNestedOneWithoutCommentsInput | No |
| bookmarks | BookmarkCreateNestedManyWithoutTweetInput | No |
| pinned_by_users | UserCreateNestedManyWithoutPinned_tweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| source | String | No |
| in_reply_to_user_id | String | Null | Yes |
| in_reply_to_screen_name | String | Null | Yes |
| is_quote_status | Boolean | No |
| quoted_status_id | String | Null | Yes |
| quote_count | Int | No |
| reply_count | Int | No |
| retweet_count | Int | No |
| favorite_count | Int | No |
| vote_count | Int | No |
| possibly_sensitive | Boolean | No |
| lang | String | No |
| created_at | DateTime | No |
| author_id | String | No |
| quoted_tweet_id | String | Null | Yes |
| in_reply_to_status_id | String | Null | Yes |
| media | MediaUncheckedCreateNestedManyWithoutTweetInput | No |
| votes | VoteUncheckedCreateNestedManyWithoutTweetInput | No |
| retweets | RetweetUncheckedCreateNestedManyWithoutTweetInput | No |
| quotes | TweetUncheckedCreateNestedManyWithoutQuoted_tweetInput | No |
| comments | TweetUncheckedCreateNestedManyWithoutTweet_commentInput | No |
| bookmarks | BookmarkUncheckedCreateNestedManyWithoutTweetInput | No |
| pinned_by_users | UserUncheckedCreateNestedManyWithoutPinned_tweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TweetWhereUniqueInput | No |
| create | TweetCreateWithoutLikesInput | TweetUncheckedCreateWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | Null | Yes |
| url | String | Null | Yes |
| description | String | Null | Yes |
| detail | String | Null | Yes |
| protected | Boolean | No |
| verified | Boolean | No |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| google_id | String | Null | Yes |
| google_username | String | Null | Yes |
| google_email | String | Null | Yes |
| discord_id | String | Null | Yes |
| discord_username | String | Null | Yes |
| discord_email | String | Null | Yes |
| twitter_id | String | Null | Yes |
| twitter_username | String | Null | Yes |
| twitter_email | String | Null | Yes |
| image | String | Null | Yes |
| password | String | Null | Yes |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | Null | Yes |
| profile_image_url | String | Null | Yes |
| evm_address | String | Null | Yes |
| bech32_address | String | Null | Yes |
| cryptoLoginNonce | CryptoLoginNonceCreateNestedOneWithoutUserInput | No |
| accounts | AccountCreateNestedManyWithoutUserInput | No |
| sessions | SessionCreateNestedManyWithoutUserInput | No |
| tweets | TweetCreateNestedManyWithoutAuthorInput | No |
| reputations | ReputationCreateNestedManyWithoutUserInput | No |
| votes | VoteCreateNestedManyWithoutUserInput | No |
| followers | FollowerCreateNestedManyWithoutFollowerInput | No |
| following | FollowerCreateNestedManyWithoutFollowedInput | No |
| retweets | RetweetCreateNestedManyWithoutUserInput | No |
| bookmarks | BookmarkCreateNestedManyWithoutUserInput | No |
| sent_messages | MessageCreateNestedManyWithoutReceiverInput | No |
| received_messages | MessageCreateNestedManyWithoutSenderInput | No |
| conversations | ConversationCreateNestedManyWithoutUsersInput | No |
| pinned_tweet | TweetCreateNestedOneWithoutPinned_by_usersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | Null | Yes |
| url | String | Null | Yes |
| description | String | Null | Yes |
| detail | String | Null | Yes |
| protected | Boolean | No |
| verified | Boolean | No |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| google_id | String | Null | Yes |
| google_username | String | Null | Yes |
| google_email | String | Null | Yes |
| discord_id | String | Null | Yes |
| discord_username | String | Null | Yes |
| discord_email | String | Null | Yes |
| twitter_id | String | Null | Yes |
| twitter_username | String | Null | Yes |
| twitter_email | String | Null | Yes |
| image | String | Null | Yes |
| password | String | Null | Yes |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | Null | Yes |
| profile_image_url | String | Null | Yes |
| evm_address | String | Null | Yes |
| bech32_address | String | Null | Yes |
| pinned_tweet_id | String | Null | Yes |
| cryptoLoginNonce | CryptoLoginNonceUncheckedCreateNestedOneWithoutUserInput | No |
| accounts | AccountUncheckedCreateNestedManyWithoutUserInput | No |
| sessions | SessionUncheckedCreateNestedManyWithoutUserInput | No |
| tweets | TweetUncheckedCreateNestedManyWithoutAuthorInput | No |
| reputations | ReputationUncheckedCreateNestedManyWithoutUserInput | No |
| votes | VoteUncheckedCreateNestedManyWithoutUserInput | No |
| followers | FollowerUncheckedCreateNestedManyWithoutFollowerInput | No |
| following | FollowerUncheckedCreateNestedManyWithoutFollowedInput | No |
| retweets | RetweetUncheckedCreateNestedManyWithoutUserInput | No |
| bookmarks | BookmarkUncheckedCreateNestedManyWithoutUserInput | No |
| sent_messages | MessageUncheckedCreateNestedManyWithoutReceiverInput | No |
| received_messages | MessageUncheckedCreateNestedManyWithoutSenderInput | No |
| conversations | ConversationUncheckedCreateNestedManyWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutLikesInput | UserUncheckedCreateWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | TweetUpdateWithoutLikesInput | TweetUncheckedUpdateWithoutLikesInput | No |
| create | TweetCreateWithoutLikesInput | TweetUncheckedCreateWithoutLikesInput | No |
| where | TweetWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TweetWhereInput | No |
| data | TweetUpdateWithoutLikesInput | TweetUncheckedUpdateWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutLikesInput | UserUncheckedUpdateWithoutLikesInput | No |
| create | UserCreateWithoutLikesInput | UserUncheckedCreateWithoutLikesInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutLikesInput | UserUncheckedUpdateWithoutLikesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | Null | Yes |
| url | String | Null | Yes |
| description | String | Null | Yes |
| detail | String | Null | Yes |
| protected | Boolean | No |
| verified | Boolean | No |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| google_id | String | Null | Yes |
| google_username | String | Null | Yes |
| google_email | String | Null | Yes |
| discord_id | String | Null | Yes |
| discord_username | String | Null | Yes |
| discord_email | String | Null | Yes |
| twitter_id | String | Null | Yes |
| twitter_username | String | Null | Yes |
| twitter_email | String | Null | Yes |
| image | String | Null | Yes |
| password | String | Null | Yes |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | Null | Yes |
| profile_image_url | String | Null | Yes |
| evm_address | String | Null | Yes |
| bech32_address | String | Null | Yes |
| cryptoLoginNonce | CryptoLoginNonceCreateNestedOneWithoutUserInput | No |
| accounts | AccountCreateNestedManyWithoutUserInput | No |
| sessions | SessionCreateNestedManyWithoutUserInput | No |
| tweets | TweetCreateNestedManyWithoutAuthorInput | No |
| likes | LikeCreateNestedManyWithoutUserInput | No |
| votes | VoteCreateNestedManyWithoutUserInput | No |
| followers | FollowerCreateNestedManyWithoutFollowerInput | No |
| following | FollowerCreateNestedManyWithoutFollowedInput | No |
| retweets | RetweetCreateNestedManyWithoutUserInput | No |
| bookmarks | BookmarkCreateNestedManyWithoutUserInput | No |
| sent_messages | MessageCreateNestedManyWithoutReceiverInput | No |
| received_messages | MessageCreateNestedManyWithoutSenderInput | No |
| conversations | ConversationCreateNestedManyWithoutUsersInput | No |
| pinned_tweet | TweetCreateNestedOneWithoutPinned_by_usersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | Null | Yes |
| url | String | Null | Yes |
| description | String | Null | Yes |
| detail | String | Null | Yes |
| protected | Boolean | No |
| verified | Boolean | No |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| google_id | String | Null | Yes |
| google_username | String | Null | Yes |
| google_email | String | Null | Yes |
| discord_id | String | Null | Yes |
| discord_username | String | Null | Yes |
| discord_email | String | Null | Yes |
| twitter_id | String | Null | Yes |
| twitter_username | String | Null | Yes |
| twitter_email | String | Null | Yes |
| image | String | Null | Yes |
| password | String | Null | Yes |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | Null | Yes |
| profile_image_url | String | Null | Yes |
| evm_address | String | Null | Yes |
| bech32_address | String | Null | Yes |
| pinned_tweet_id | String | Null | Yes |
| cryptoLoginNonce | CryptoLoginNonceUncheckedCreateNestedOneWithoutUserInput | No |
| accounts | AccountUncheckedCreateNestedManyWithoutUserInput | No |
| sessions | SessionUncheckedCreateNestedManyWithoutUserInput | No |
| tweets | TweetUncheckedCreateNestedManyWithoutAuthorInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutUserInput | No |
| votes | VoteUncheckedCreateNestedManyWithoutUserInput | No |
| followers | FollowerUncheckedCreateNestedManyWithoutFollowerInput | No |
| following | FollowerUncheckedCreateNestedManyWithoutFollowedInput | No |
| retweets | RetweetUncheckedCreateNestedManyWithoutUserInput | No |
| bookmarks | BookmarkUncheckedCreateNestedManyWithoutUserInput | No |
| sent_messages | MessageUncheckedCreateNestedManyWithoutReceiverInput | No |
| received_messages | MessageUncheckedCreateNestedManyWithoutSenderInput | No |
| conversations | ConversationUncheckedCreateNestedManyWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutReputationsInput | UserUncheckedCreateWithoutReputationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutReputationsInput | UserUncheckedUpdateWithoutReputationsInput | No |
| create | UserCreateWithoutReputationsInput | UserUncheckedCreateWithoutReputationsInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutReputationsInput | UserUncheckedUpdateWithoutReputationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| source | String | No |
| in_reply_to_user_id | String | Null | Yes |
| in_reply_to_screen_name | String | Null | Yes |
| is_quote_status | Boolean | No |
| quoted_status_id | String | Null | Yes |
| quote_count | Int | No |
| reply_count | Int | No |
| retweet_count | Int | No |
| favorite_count | Int | No |
| vote_count | Int | No |
| possibly_sensitive | Boolean | No |
| lang | String | No |
| created_at | DateTime | No |
| author | UserCreateNestedOneWithoutTweetsInput | No |
| media | MediaCreateNestedManyWithoutTweetInput | No |
| likes | LikeCreateNestedManyWithoutTweetInput | No |
| retweets | RetweetCreateNestedManyWithoutTweetInput | No |
| quotes | TweetCreateNestedManyWithoutQuoted_tweetInput | No |
| quoted_tweet | TweetCreateNestedOneWithoutQuotesInput | No |
| comments | TweetCreateNestedManyWithoutTweet_commentInput | No |
| tweet_comment | TweetCreateNestedOneWithoutCommentsInput | No |
| bookmarks | BookmarkCreateNestedManyWithoutTweetInput | No |
| pinned_by_users | UserCreateNestedManyWithoutPinned_tweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| source | String | No |
| in_reply_to_user_id | String | Null | Yes |
| in_reply_to_screen_name | String | Null | Yes |
| is_quote_status | Boolean | No |
| quoted_status_id | String | Null | Yes |
| quote_count | Int | No |
| reply_count | Int | No |
| retweet_count | Int | No |
| favorite_count | Int | No |
| vote_count | Int | No |
| possibly_sensitive | Boolean | No |
| lang | String | No |
| created_at | DateTime | No |
| author_id | String | No |
| quoted_tweet_id | String | Null | Yes |
| in_reply_to_status_id | String | Null | Yes |
| media | MediaUncheckedCreateNestedManyWithoutTweetInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutTweetInput | No |
| retweets | RetweetUncheckedCreateNestedManyWithoutTweetInput | No |
| quotes | TweetUncheckedCreateNestedManyWithoutQuoted_tweetInput | No |
| comments | TweetUncheckedCreateNestedManyWithoutTweet_commentInput | No |
| bookmarks | BookmarkUncheckedCreateNestedManyWithoutTweetInput | No |
| pinned_by_users | UserUncheckedCreateNestedManyWithoutPinned_tweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TweetWhereUniqueInput | No |
| create | TweetCreateWithoutVotesInput | TweetUncheckedCreateWithoutVotesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | Null | Yes |
| url | String | Null | Yes |
| description | String | Null | Yes |
| detail | String | Null | Yes |
| protected | Boolean | No |
| verified | Boolean | No |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| google_id | String | Null | Yes |
| google_username | String | Null | Yes |
| google_email | String | Null | Yes |
| discord_id | String | Null | Yes |
| discord_username | String | Null | Yes |
| discord_email | String | Null | Yes |
| twitter_id | String | Null | Yes |
| twitter_username | String | Null | Yes |
| twitter_email | String | Null | Yes |
| image | String | Null | Yes |
| password | String | Null | Yes |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | Null | Yes |
| profile_image_url | String | Null | Yes |
| evm_address | String | Null | Yes |
| bech32_address | String | Null | Yes |
| cryptoLoginNonce | CryptoLoginNonceCreateNestedOneWithoutUserInput | No |
| accounts | AccountCreateNestedManyWithoutUserInput | No |
| sessions | SessionCreateNestedManyWithoutUserInput | No |
| tweets | TweetCreateNestedManyWithoutAuthorInput | No |
| likes | LikeCreateNestedManyWithoutUserInput | No |
| reputations | ReputationCreateNestedManyWithoutUserInput | No |
| followers | FollowerCreateNestedManyWithoutFollowerInput | No |
| following | FollowerCreateNestedManyWithoutFollowedInput | No |
| retweets | RetweetCreateNestedManyWithoutUserInput | No |
| bookmarks | BookmarkCreateNestedManyWithoutUserInput | No |
| sent_messages | MessageCreateNestedManyWithoutReceiverInput | No |
| received_messages | MessageCreateNestedManyWithoutSenderInput | No |
| conversations | ConversationCreateNestedManyWithoutUsersInput | No |
| pinned_tweet | TweetCreateNestedOneWithoutPinned_by_usersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | Null | Yes |
| url | String | Null | Yes |
| description | String | Null | Yes |
| detail | String | Null | Yes |
| protected | Boolean | No |
| verified | Boolean | No |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| google_id | String | Null | Yes |
| google_username | String | Null | Yes |
| google_email | String | Null | Yes |
| discord_id | String | Null | Yes |
| discord_username | String | Null | Yes |
| discord_email | String | Null | Yes |
| twitter_id | String | Null | Yes |
| twitter_username | String | Null | Yes |
| twitter_email | String | Null | Yes |
| image | String | Null | Yes |
| password | String | Null | Yes |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | Null | Yes |
| profile_image_url | String | Null | Yes |
| evm_address | String | Null | Yes |
| bech32_address | String | Null | Yes |
| pinned_tweet_id | String | Null | Yes |
| cryptoLoginNonce | CryptoLoginNonceUncheckedCreateNestedOneWithoutUserInput | No |
| accounts | AccountUncheckedCreateNestedManyWithoutUserInput | No |
| sessions | SessionUncheckedCreateNestedManyWithoutUserInput | No |
| tweets | TweetUncheckedCreateNestedManyWithoutAuthorInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutUserInput | No |
| reputations | ReputationUncheckedCreateNestedManyWithoutUserInput | No |
| followers | FollowerUncheckedCreateNestedManyWithoutFollowerInput | No |
| following | FollowerUncheckedCreateNestedManyWithoutFollowedInput | No |
| retweets | RetweetUncheckedCreateNestedManyWithoutUserInput | No |
| bookmarks | BookmarkUncheckedCreateNestedManyWithoutUserInput | No |
| sent_messages | MessageUncheckedCreateNestedManyWithoutReceiverInput | No |
| received_messages | MessageUncheckedCreateNestedManyWithoutSenderInput | No |
| conversations | ConversationUncheckedCreateNestedManyWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutVotesInput | UserUncheckedCreateWithoutVotesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | TweetUpdateWithoutVotesInput | TweetUncheckedUpdateWithoutVotesInput | No |
| create | TweetCreateWithoutVotesInput | TweetUncheckedCreateWithoutVotesInput | No |
| where | TweetWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TweetWhereInput | No |
| data | TweetUpdateWithoutVotesInput | TweetUncheckedUpdateWithoutVotesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutVotesInput | UserUncheckedUpdateWithoutVotesInput | No |
| create | UserCreateWithoutVotesInput | UserUncheckedCreateWithoutVotesInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutVotesInput | UserUncheckedUpdateWithoutVotesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| source | String | No |
| in_reply_to_user_id | String | Null | Yes |
| in_reply_to_screen_name | String | Null | Yes |
| is_quote_status | Boolean | No |
| quoted_status_id | String | Null | Yes |
| quote_count | Int | No |
| reply_count | Int | No |
| retweet_count | Int | No |
| favorite_count | Int | No |
| vote_count | Int | No |
| possibly_sensitive | Boolean | No |
| lang | String | No |
| created_at | DateTime | No |
| author | UserCreateNestedOneWithoutTweetsInput | No |
| media | MediaCreateNestedManyWithoutTweetInput | No |
| likes | LikeCreateNestedManyWithoutTweetInput | No |
| votes | VoteCreateNestedManyWithoutTweetInput | No |
| quotes | TweetCreateNestedManyWithoutQuoted_tweetInput | No |
| quoted_tweet | TweetCreateNestedOneWithoutQuotesInput | No |
| comments | TweetCreateNestedManyWithoutTweet_commentInput | No |
| tweet_comment | TweetCreateNestedOneWithoutCommentsInput | No |
| bookmarks | BookmarkCreateNestedManyWithoutTweetInput | No |
| pinned_by_users | UserCreateNestedManyWithoutPinned_tweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| source | String | No |
| in_reply_to_user_id | String | Null | Yes |
| in_reply_to_screen_name | String | Null | Yes |
| is_quote_status | Boolean | No |
| quoted_status_id | String | Null | Yes |
| quote_count | Int | No |
| reply_count | Int | No |
| retweet_count | Int | No |
| favorite_count | Int | No |
| vote_count | Int | No |
| possibly_sensitive | Boolean | No |
| lang | String | No |
| created_at | DateTime | No |
| author_id | String | No |
| quoted_tweet_id | String | Null | Yes |
| in_reply_to_status_id | String | Null | Yes |
| media | MediaUncheckedCreateNestedManyWithoutTweetInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutTweetInput | No |
| votes | VoteUncheckedCreateNestedManyWithoutTweetInput | No |
| quotes | TweetUncheckedCreateNestedManyWithoutQuoted_tweetInput | No |
| comments | TweetUncheckedCreateNestedManyWithoutTweet_commentInput | No |
| bookmarks | BookmarkUncheckedCreateNestedManyWithoutTweetInput | No |
| pinned_by_users | UserUncheckedCreateNestedManyWithoutPinned_tweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TweetWhereUniqueInput | No |
| create | TweetCreateWithoutRetweetsInput | TweetUncheckedCreateWithoutRetweetsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | Null | Yes |
| url | String | Null | Yes |
| description | String | Null | Yes |
| detail | String | Null | Yes |
| protected | Boolean | No |
| verified | Boolean | No |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| google_id | String | Null | Yes |
| google_username | String | Null | Yes |
| google_email | String | Null | Yes |
| discord_id | String | Null | Yes |
| discord_username | String | Null | Yes |
| discord_email | String | Null | Yes |
| twitter_id | String | Null | Yes |
| twitter_username | String | Null | Yes |
| twitter_email | String | Null | Yes |
| image | String | Null | Yes |
| password | String | Null | Yes |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | Null | Yes |
| profile_image_url | String | Null | Yes |
| evm_address | String | Null | Yes |
| bech32_address | String | Null | Yes |
| cryptoLoginNonce | CryptoLoginNonceCreateNestedOneWithoutUserInput | No |
| accounts | AccountCreateNestedManyWithoutUserInput | No |
| sessions | SessionCreateNestedManyWithoutUserInput | No |
| tweets | TweetCreateNestedManyWithoutAuthorInput | No |
| likes | LikeCreateNestedManyWithoutUserInput | No |
| reputations | ReputationCreateNestedManyWithoutUserInput | No |
| votes | VoteCreateNestedManyWithoutUserInput | No |
| followers | FollowerCreateNestedManyWithoutFollowerInput | No |
| following | FollowerCreateNestedManyWithoutFollowedInput | No |
| bookmarks | BookmarkCreateNestedManyWithoutUserInput | No |
| sent_messages | MessageCreateNestedManyWithoutReceiverInput | No |
| received_messages | MessageCreateNestedManyWithoutSenderInput | No |
| conversations | ConversationCreateNestedManyWithoutUsersInput | No |
| pinned_tweet | TweetCreateNestedOneWithoutPinned_by_usersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | Null | Yes |
| url | String | Null | Yes |
| description | String | Null | Yes |
| detail | String | Null | Yes |
| protected | Boolean | No |
| verified | Boolean | No |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| google_id | String | Null | Yes |
| google_username | String | Null | Yes |
| google_email | String | Null | Yes |
| discord_id | String | Null | Yes |
| discord_username | String | Null | Yes |
| discord_email | String | Null | Yes |
| twitter_id | String | Null | Yes |
| twitter_username | String | Null | Yes |
| twitter_email | String | Null | Yes |
| image | String | Null | Yes |
| password | String | Null | Yes |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | Null | Yes |
| profile_image_url | String | Null | Yes |
| evm_address | String | Null | Yes |
| bech32_address | String | Null | Yes |
| pinned_tweet_id | String | Null | Yes |
| cryptoLoginNonce | CryptoLoginNonceUncheckedCreateNestedOneWithoutUserInput | No |
| accounts | AccountUncheckedCreateNestedManyWithoutUserInput | No |
| sessions | SessionUncheckedCreateNestedManyWithoutUserInput | No |
| tweets | TweetUncheckedCreateNestedManyWithoutAuthorInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutUserInput | No |
| reputations | ReputationUncheckedCreateNestedManyWithoutUserInput | No |
| votes | VoteUncheckedCreateNestedManyWithoutUserInput | No |
| followers | FollowerUncheckedCreateNestedManyWithoutFollowerInput | No |
| following | FollowerUncheckedCreateNestedManyWithoutFollowedInput | No |
| bookmarks | BookmarkUncheckedCreateNestedManyWithoutUserInput | No |
| sent_messages | MessageUncheckedCreateNestedManyWithoutReceiverInput | No |
| received_messages | MessageUncheckedCreateNestedManyWithoutSenderInput | No |
| conversations | ConversationUncheckedCreateNestedManyWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutRetweetsInput | UserUncheckedCreateWithoutRetweetsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | TweetUpdateWithoutRetweetsInput | TweetUncheckedUpdateWithoutRetweetsInput | No |
| create | TweetCreateWithoutRetweetsInput | TweetUncheckedCreateWithoutRetweetsInput | No |
| where | TweetWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TweetWhereInput | No |
| data | TweetUpdateWithoutRetweetsInput | TweetUncheckedUpdateWithoutRetweetsInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutRetweetsInput | UserUncheckedUpdateWithoutRetweetsInput | No |
| create | UserCreateWithoutRetweetsInput | UserUncheckedCreateWithoutRetweetsInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutRetweetsInput | UserUncheckedUpdateWithoutRetweetsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| source | String | No |
| in_reply_to_user_id | String | Null | Yes |
| in_reply_to_screen_name | String | Null | Yes |
| is_quote_status | Boolean | No |
| quoted_status_id | String | Null | Yes |
| quote_count | Int | No |
| reply_count | Int | No |
| retweet_count | Int | No |
| favorite_count | Int | No |
| vote_count | Int | No |
| possibly_sensitive | Boolean | No |
| lang | String | No |
| created_at | DateTime | No |
| author | UserCreateNestedOneWithoutTweetsInput | No |
| media | MediaCreateNestedManyWithoutTweetInput | No |
| likes | LikeCreateNestedManyWithoutTweetInput | No |
| votes | VoteCreateNestedManyWithoutTweetInput | No |
| retweets | RetweetCreateNestedManyWithoutTweetInput | No |
| quotes | TweetCreateNestedManyWithoutQuoted_tweetInput | No |
| quoted_tweet | TweetCreateNestedOneWithoutQuotesInput | No |
| comments | TweetCreateNestedManyWithoutTweet_commentInput | No |
| tweet_comment | TweetCreateNestedOneWithoutCommentsInput | No |
| pinned_by_users | UserCreateNestedManyWithoutPinned_tweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| source | String | No |
| in_reply_to_user_id | String | Null | Yes |
| in_reply_to_screen_name | String | Null | Yes |
| is_quote_status | Boolean | No |
| quoted_status_id | String | Null | Yes |
| quote_count | Int | No |
| reply_count | Int | No |
| retweet_count | Int | No |
| favorite_count | Int | No |
| vote_count | Int | No |
| possibly_sensitive | Boolean | No |
| lang | String | No |
| created_at | DateTime | No |
| author_id | String | No |
| quoted_tweet_id | String | Null | Yes |
| in_reply_to_status_id | String | Null | Yes |
| media | MediaUncheckedCreateNestedManyWithoutTweetInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutTweetInput | No |
| votes | VoteUncheckedCreateNestedManyWithoutTweetInput | No |
| retweets | RetweetUncheckedCreateNestedManyWithoutTweetInput | No |
| quotes | TweetUncheckedCreateNestedManyWithoutQuoted_tweetInput | No |
| comments | TweetUncheckedCreateNestedManyWithoutTweet_commentInput | No |
| pinned_by_users | UserUncheckedCreateNestedManyWithoutPinned_tweetInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TweetWhereUniqueInput | No |
| create | TweetCreateWithoutBookmarksInput | TweetUncheckedCreateWithoutBookmarksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | Null | Yes |
| url | String | Null | Yes |
| description | String | Null | Yes |
| detail | String | Null | Yes |
| protected | Boolean | No |
| verified | Boolean | No |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| google_id | String | Null | Yes |
| google_username | String | Null | Yes |
| google_email | String | Null | Yes |
| discord_id | String | Null | Yes |
| discord_username | String | Null | Yes |
| discord_email | String | Null | Yes |
| twitter_id | String | Null | Yes |
| twitter_username | String | Null | Yes |
| twitter_email | String | Null | Yes |
| image | String | Null | Yes |
| password | String | Null | Yes |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | Null | Yes |
| profile_image_url | String | Null | Yes |
| evm_address | String | Null | Yes |
| bech32_address | String | Null | Yes |
| cryptoLoginNonce | CryptoLoginNonceCreateNestedOneWithoutUserInput | No |
| accounts | AccountCreateNestedManyWithoutUserInput | No |
| sessions | SessionCreateNestedManyWithoutUserInput | No |
| tweets | TweetCreateNestedManyWithoutAuthorInput | No |
| likes | LikeCreateNestedManyWithoutUserInput | No |
| reputations | ReputationCreateNestedManyWithoutUserInput | No |
| votes | VoteCreateNestedManyWithoutUserInput | No |
| followers | FollowerCreateNestedManyWithoutFollowerInput | No |
| following | FollowerCreateNestedManyWithoutFollowedInput | No |
| retweets | RetweetCreateNestedManyWithoutUserInput | No |
| sent_messages | MessageCreateNestedManyWithoutReceiverInput | No |
| received_messages | MessageCreateNestedManyWithoutSenderInput | No |
| conversations | ConversationCreateNestedManyWithoutUsersInput | No |
| pinned_tweet | TweetCreateNestedOneWithoutPinned_by_usersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | Null | Yes |
| url | String | Null | Yes |
| description | String | Null | Yes |
| detail | String | Null | Yes |
| protected | Boolean | No |
| verified | Boolean | No |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| google_id | String | Null | Yes |
| google_username | String | Null | Yes |
| google_email | String | Null | Yes |
| discord_id | String | Null | Yes |
| discord_username | String | Null | Yes |
| discord_email | String | Null | Yes |
| twitter_id | String | Null | Yes |
| twitter_username | String | Null | Yes |
| twitter_email | String | Null | Yes |
| image | String | Null | Yes |
| password | String | Null | Yes |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | Null | Yes |
| profile_image_url | String | Null | Yes |
| evm_address | String | Null | Yes |
| bech32_address | String | Null | Yes |
| pinned_tweet_id | String | Null | Yes |
| cryptoLoginNonce | CryptoLoginNonceUncheckedCreateNestedOneWithoutUserInput | No |
| accounts | AccountUncheckedCreateNestedManyWithoutUserInput | No |
| sessions | SessionUncheckedCreateNestedManyWithoutUserInput | No |
| tweets | TweetUncheckedCreateNestedManyWithoutAuthorInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutUserInput | No |
| reputations | ReputationUncheckedCreateNestedManyWithoutUserInput | No |
| votes | VoteUncheckedCreateNestedManyWithoutUserInput | No |
| followers | FollowerUncheckedCreateNestedManyWithoutFollowerInput | No |
| following | FollowerUncheckedCreateNestedManyWithoutFollowedInput | No |
| retweets | RetweetUncheckedCreateNestedManyWithoutUserInput | No |
| sent_messages | MessageUncheckedCreateNestedManyWithoutReceiverInput | No |
| received_messages | MessageUncheckedCreateNestedManyWithoutSenderInput | No |
| conversations | ConversationUncheckedCreateNestedManyWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutBookmarksInput | UserUncheckedCreateWithoutBookmarksInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | TweetUpdateWithoutBookmarksInput | TweetUncheckedUpdateWithoutBookmarksInput | No |
| create | TweetCreateWithoutBookmarksInput | TweetUncheckedCreateWithoutBookmarksInput | No |
| where | TweetWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | TweetWhereInput | No |
| data | TweetUpdateWithoutBookmarksInput | TweetUncheckedUpdateWithoutBookmarksInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutBookmarksInput | UserUncheckedUpdateWithoutBookmarksInput | No |
| create | UserCreateWithoutBookmarksInput | UserUncheckedCreateWithoutBookmarksInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutBookmarksInput | UserUncheckedUpdateWithoutBookmarksInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | Null | Yes |
| url | String | Null | Yes |
| description | String | Null | Yes |
| detail | String | Null | Yes |
| protected | Boolean | No |
| verified | Boolean | No |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| google_id | String | Null | Yes |
| google_username | String | Null | Yes |
| google_email | String | Null | Yes |
| discord_id | String | Null | Yes |
| discord_username | String | Null | Yes |
| discord_email | String | Null | Yes |
| twitter_id | String | Null | Yes |
| twitter_username | String | Null | Yes |
| twitter_email | String | Null | Yes |
| image | String | Null | Yes |
| password | String | Null | Yes |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | Null | Yes |
| profile_image_url | String | Null | Yes |
| evm_address | String | Null | Yes |
| bech32_address | String | Null | Yes |
| cryptoLoginNonce | CryptoLoginNonceCreateNestedOneWithoutUserInput | No |
| accounts | AccountCreateNestedManyWithoutUserInput | No |
| sessions | SessionCreateNestedManyWithoutUserInput | No |
| tweets | TweetCreateNestedManyWithoutAuthorInput | No |
| likes | LikeCreateNestedManyWithoutUserInput | No |
| reputations | ReputationCreateNestedManyWithoutUserInput | No |
| votes | VoteCreateNestedManyWithoutUserInput | No |
| followers | FollowerCreateNestedManyWithoutFollowerInput | No |
| following | FollowerCreateNestedManyWithoutFollowedInput | No |
| retweets | RetweetCreateNestedManyWithoutUserInput | No |
| bookmarks | BookmarkCreateNestedManyWithoutUserInput | No |
| sent_messages | MessageCreateNestedManyWithoutReceiverInput | No |
| conversations | ConversationCreateNestedManyWithoutUsersInput | No |
| pinned_tweet | TweetCreateNestedOneWithoutPinned_by_usersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | Null | Yes |
| url | String | Null | Yes |
| description | String | Null | Yes |
| detail | String | Null | Yes |
| protected | Boolean | No |
| verified | Boolean | No |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| google_id | String | Null | Yes |
| google_username | String | Null | Yes |
| google_email | String | Null | Yes |
| discord_id | String | Null | Yes |
| discord_username | String | Null | Yes |
| discord_email | String | Null | Yes |
| twitter_id | String | Null | Yes |
| twitter_username | String | Null | Yes |
| twitter_email | String | Null | Yes |
| image | String | Null | Yes |
| password | String | Null | Yes |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | Null | Yes |
| profile_image_url | String | Null | Yes |
| evm_address | String | Null | Yes |
| bech32_address | String | Null | Yes |
| pinned_tweet_id | String | Null | Yes |
| cryptoLoginNonce | CryptoLoginNonceUncheckedCreateNestedOneWithoutUserInput | No |
| accounts | AccountUncheckedCreateNestedManyWithoutUserInput | No |
| sessions | SessionUncheckedCreateNestedManyWithoutUserInput | No |
| tweets | TweetUncheckedCreateNestedManyWithoutAuthorInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutUserInput | No |
| reputations | ReputationUncheckedCreateNestedManyWithoutUserInput | No |
| votes | VoteUncheckedCreateNestedManyWithoutUserInput | No |
| followers | FollowerUncheckedCreateNestedManyWithoutFollowerInput | No |
| following | FollowerUncheckedCreateNestedManyWithoutFollowedInput | No |
| retweets | RetweetUncheckedCreateNestedManyWithoutUserInput | No |
| bookmarks | BookmarkUncheckedCreateNestedManyWithoutUserInput | No |
| sent_messages | MessageUncheckedCreateNestedManyWithoutReceiverInput | No |
| conversations | ConversationUncheckedCreateNestedManyWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutReceived_messagesInput | UserUncheckedCreateWithoutReceived_messagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | Null | Yes |
| url | String | Null | Yes |
| description | String | Null | Yes |
| detail | String | Null | Yes |
| protected | Boolean | No |
| verified | Boolean | No |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| google_id | String | Null | Yes |
| google_username | String | Null | Yes |
| google_email | String | Null | Yes |
| discord_id | String | Null | Yes |
| discord_username | String | Null | Yes |
| discord_email | String | Null | Yes |
| twitter_id | String | Null | Yes |
| twitter_username | String | Null | Yes |
| twitter_email | String | Null | Yes |
| image | String | Null | Yes |
| password | String | Null | Yes |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | Null | Yes |
| profile_image_url | String | Null | Yes |
| evm_address | String | Null | Yes |
| bech32_address | String | Null | Yes |
| cryptoLoginNonce | CryptoLoginNonceCreateNestedOneWithoutUserInput | No |
| accounts | AccountCreateNestedManyWithoutUserInput | No |
| sessions | SessionCreateNestedManyWithoutUserInput | No |
| tweets | TweetCreateNestedManyWithoutAuthorInput | No |
| likes | LikeCreateNestedManyWithoutUserInput | No |
| reputations | ReputationCreateNestedManyWithoutUserInput | No |
| votes | VoteCreateNestedManyWithoutUserInput | No |
| followers | FollowerCreateNestedManyWithoutFollowerInput | No |
| following | FollowerCreateNestedManyWithoutFollowedInput | No |
| retweets | RetweetCreateNestedManyWithoutUserInput | No |
| bookmarks | BookmarkCreateNestedManyWithoutUserInput | No |
| received_messages | MessageCreateNestedManyWithoutSenderInput | No |
| conversations | ConversationCreateNestedManyWithoutUsersInput | No |
| pinned_tweet | TweetCreateNestedOneWithoutPinned_by_usersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | Null | Yes |
| url | String | Null | Yes |
| description | String | Null | Yes |
| detail | String | Null | Yes |
| protected | Boolean | No |
| verified | Boolean | No |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| google_id | String | Null | Yes |
| google_username | String | Null | Yes |
| google_email | String | Null | Yes |
| discord_id | String | Null | Yes |
| discord_username | String | Null | Yes |
| discord_email | String | Null | Yes |
| twitter_id | String | Null | Yes |
| twitter_username | String | Null | Yes |
| twitter_email | String | Null | Yes |
| image | String | Null | Yes |
| password | String | Null | Yes |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | Null | Yes |
| profile_image_url | String | Null | Yes |
| evm_address | String | Null | Yes |
| bech32_address | String | Null | Yes |
| pinned_tweet_id | String | Null | Yes |
| cryptoLoginNonce | CryptoLoginNonceUncheckedCreateNestedOneWithoutUserInput | No |
| accounts | AccountUncheckedCreateNestedManyWithoutUserInput | No |
| sessions | SessionUncheckedCreateNestedManyWithoutUserInput | No |
| tweets | TweetUncheckedCreateNestedManyWithoutAuthorInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutUserInput | No |
| reputations | ReputationUncheckedCreateNestedManyWithoutUserInput | No |
| votes | VoteUncheckedCreateNestedManyWithoutUserInput | No |
| followers | FollowerUncheckedCreateNestedManyWithoutFollowerInput | No |
| following | FollowerUncheckedCreateNestedManyWithoutFollowedInput | No |
| retweets | RetweetUncheckedCreateNestedManyWithoutUserInput | No |
| bookmarks | BookmarkUncheckedCreateNestedManyWithoutUserInput | No |
| received_messages | MessageUncheckedCreateNestedManyWithoutSenderInput | No |
| conversations | ConversationUncheckedCreateNestedManyWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutSent_messagesInput | UserUncheckedCreateWithoutSent_messagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| created_at | DateTime | No |
| users | UserCreateNestedManyWithoutConversationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| created_at | DateTime | No |
| users | UserUncheckedCreateNestedManyWithoutConversationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConversationWhereUniqueInput | No |
| create | ConversationCreateWithoutMessagesInput | ConversationUncheckedCreateWithoutMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| media_url | String | No |
| media_type | String | No |
| media_path | String | No |
| tweet | TweetCreateNestedOneWithoutMediaInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| media_url | String | No |
| media_type | String | No |
| media_path | String | No |
| tweet_id | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| where | MediaWhereUniqueInput | No |
| create | MediaCreateWithoutMessageInput | MediaUncheckedCreateWithoutMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | MediaCreateManyMessageInput | MediaCreateManyMessageInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutReceived_messagesInput | UserUncheckedUpdateWithoutReceived_messagesInput | No |
| create | UserCreateWithoutReceived_messagesInput | UserUncheckedCreateWithoutReceived_messagesInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutReceived_messagesInput | UserUncheckedUpdateWithoutReceived_messagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutSent_messagesInput | UserUncheckedUpdateWithoutSent_messagesInput | No |
| create | UserCreateWithoutSent_messagesInput | UserUncheckedCreateWithoutSent_messagesInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutSent_messagesInput | UserUncheckedUpdateWithoutSent_messagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | ConversationUpdateWithoutMessagesInput | ConversationUncheckedUpdateWithoutMessagesInput | No |
| create | ConversationCreateWithoutMessagesInput | ConversationUncheckedCreateWithoutMessagesInput | No |
| where | ConversationWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | ConversationWhereInput | No |
| data | ConversationUpdateWithoutMessagesInput | ConversationUncheckedUpdateWithoutMessagesInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| users | UserUpdateManyWithoutConversationsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| users | UserUncheckedUpdateManyWithoutConversationsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MediaWhereUniqueInput | No |
| update | MediaUpdateWithoutMessageInput | MediaUncheckedUpdateWithoutMessageInput | No |
| create | MediaCreateWithoutMessageInput | MediaUncheckedCreateWithoutMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MediaWhereUniqueInput | No |
| data | MediaUpdateWithoutMessageInput | MediaUncheckedUpdateWithoutMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MediaScalarWhereInput | No |
| data | MediaUpdateManyMutationInput | MediaUncheckedUpdateManyWithoutMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | Null | Yes |
| url | String | Null | Yes |
| description | String | Null | Yes |
| detail | String | Null | Yes |
| protected | Boolean | No |
| verified | Boolean | No |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| google_id | String | Null | Yes |
| google_username | String | Null | Yes |
| google_email | String | Null | Yes |
| discord_id | String | Null | Yes |
| discord_username | String | Null | Yes |
| discord_email | String | Null | Yes |
| twitter_id | String | Null | Yes |
| twitter_username | String | Null | Yes |
| twitter_email | String | Null | Yes |
| image | String | Null | Yes |
| password | String | Null | Yes |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | Null | Yes |
| profile_image_url | String | Null | Yes |
| evm_address | String | Null | Yes |
| bech32_address | String | Null | Yes |
| cryptoLoginNonce | CryptoLoginNonceCreateNestedOneWithoutUserInput | No |
| accounts | AccountCreateNestedManyWithoutUserInput | No |
| sessions | SessionCreateNestedManyWithoutUserInput | No |
| tweets | TweetCreateNestedManyWithoutAuthorInput | No |
| likes | LikeCreateNestedManyWithoutUserInput | No |
| reputations | ReputationCreateNestedManyWithoutUserInput | No |
| votes | VoteCreateNestedManyWithoutUserInput | No |
| followers | FollowerCreateNestedManyWithoutFollowerInput | No |
| following | FollowerCreateNestedManyWithoutFollowedInput | No |
| retweets | RetweetCreateNestedManyWithoutUserInput | No |
| bookmarks | BookmarkCreateNestedManyWithoutUserInput | No |
| sent_messages | MessageCreateNestedManyWithoutReceiverInput | No |
| received_messages | MessageCreateNestedManyWithoutSenderInput | No |
| pinned_tweet | TweetCreateNestedOneWithoutPinned_by_usersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | Null | Yes |
| url | String | Null | Yes |
| description | String | Null | Yes |
| detail | String | Null | Yes |
| protected | Boolean | No |
| verified | Boolean | No |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| google_id | String | Null | Yes |
| google_username | String | Null | Yes |
| google_email | String | Null | Yes |
| discord_id | String | Null | Yes |
| discord_username | String | Null | Yes |
| discord_email | String | Null | Yes |
| twitter_id | String | Null | Yes |
| twitter_username | String | Null | Yes |
| twitter_email | String | Null | Yes |
| image | String | Null | Yes |
| password | String | Null | Yes |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | Null | Yes |
| profile_image_url | String | Null | Yes |
| evm_address | String | Null | Yes |
| bech32_address | String | Null | Yes |
| pinned_tweet_id | String | Null | Yes |
| cryptoLoginNonce | CryptoLoginNonceUncheckedCreateNestedOneWithoutUserInput | No |
| accounts | AccountUncheckedCreateNestedManyWithoutUserInput | No |
| sessions | SessionUncheckedCreateNestedManyWithoutUserInput | No |
| tweets | TweetUncheckedCreateNestedManyWithoutAuthorInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutUserInput | No |
| reputations | ReputationUncheckedCreateNestedManyWithoutUserInput | No |
| votes | VoteUncheckedCreateNestedManyWithoutUserInput | No |
| followers | FollowerUncheckedCreateNestedManyWithoutFollowerInput | No |
| following | FollowerUncheckedCreateNestedManyWithoutFollowedInput | No |
| retweets | RetweetUncheckedCreateNestedManyWithoutUserInput | No |
| bookmarks | BookmarkUncheckedCreateNestedManyWithoutUserInput | No |
| sent_messages | MessageUncheckedCreateNestedManyWithoutReceiverInput | No |
| received_messages | MessageUncheckedCreateNestedManyWithoutSenderInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutConversationsInput | UserUncheckedCreateWithoutConversationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| image | String | Null | Yes |
| created_at | DateTime | No |
| sender | UserCreateNestedOneWithoutReceived_messagesInput | No |
| receiver | UserCreateNestedOneWithoutSent_messagesInput | No |
| media | MediaCreateNestedManyWithoutMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| image | String | Null | Yes |
| created_at | DateTime | No |
| sender_id | String | No |
| receiver_id | String | No |
| media | MediaUncheckedCreateNestedManyWithoutMessageInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MessageWhereUniqueInput | No |
| create | MessageCreateWithoutConversationInput | MessageUncheckedCreateWithoutConversationInput | No |
| Name | Type | Nullable |
|---|---|---|
| data | MessageCreateManyConversationInput | MessageCreateManyConversationInput[] | No |
| skipDuplicates | Boolean | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| update | UserUpdateWithoutConversationsInput | UserUncheckedUpdateWithoutConversationsInput | No |
| create | UserCreateWithoutConversationsInput | UserUncheckedCreateWithoutConversationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| data | UserUpdateWithoutConversationsInput | UserUncheckedUpdateWithoutConversationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserScalarWhereInput | No |
| data | UserUpdateManyMutationInput | UserUncheckedUpdateManyWithoutConversationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MessageWhereUniqueInput | No |
| update | MessageUpdateWithoutConversationInput | MessageUncheckedUpdateWithoutConversationInput | No |
| create | MessageCreateWithoutConversationInput | MessageUncheckedCreateWithoutConversationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MessageWhereUniqueInput | No |
| data | MessageUpdateWithoutConversationInput | MessageUncheckedUpdateWithoutConversationInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | MessageScalarWhereInput | No |
| data | MessageUpdateManyMutationInput | MessageUncheckedUpdateManyWithoutConversationInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | Null | Yes |
| url | String | Null | Yes |
| description | String | Null | Yes |
| detail | String | Null | Yes |
| protected | Boolean | No |
| verified | Boolean | No |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| google_id | String | Null | Yes |
| google_username | String | Null | Yes |
| google_email | String | Null | Yes |
| discord_id | String | Null | Yes |
| discord_username | String | Null | Yes |
| discord_email | String | Null | Yes |
| twitter_id | String | Null | Yes |
| twitter_username | String | Null | Yes |
| twitter_email | String | Null | Yes |
| image | String | Null | Yes |
| password | String | Null | Yes |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | Null | Yes |
| profile_image_url | String | Null | Yes |
| evm_address | String | Null | Yes |
| bech32_address | String | Null | Yes |
| accounts | AccountCreateNestedManyWithoutUserInput | No |
| sessions | SessionCreateNestedManyWithoutUserInput | No |
| tweets | TweetCreateNestedManyWithoutAuthorInput | No |
| likes | LikeCreateNestedManyWithoutUserInput | No |
| reputations | ReputationCreateNestedManyWithoutUserInput | No |
| votes | VoteCreateNestedManyWithoutUserInput | No |
| followers | FollowerCreateNestedManyWithoutFollowerInput | No |
| following | FollowerCreateNestedManyWithoutFollowedInput | No |
| retweets | RetweetCreateNestedManyWithoutUserInput | No |
| bookmarks | BookmarkCreateNestedManyWithoutUserInput | No |
| sent_messages | MessageCreateNestedManyWithoutReceiverInput | No |
| received_messages | MessageCreateNestedManyWithoutSenderInput | No |
| conversations | ConversationCreateNestedManyWithoutUsersInput | No |
| pinned_tweet | TweetCreateNestedOneWithoutPinned_by_usersInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | Null | Yes |
| url | String | Null | Yes |
| description | String | Null | Yes |
| detail | String | Null | Yes |
| protected | Boolean | No |
| verified | Boolean | No |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| google_id | String | Null | Yes |
| google_username | String | Null | Yes |
| google_email | String | Null | Yes |
| discord_id | String | Null | Yes |
| discord_username | String | Null | Yes |
| discord_email | String | Null | Yes |
| twitter_id | String | Null | Yes |
| twitter_username | String | Null | Yes |
| twitter_email | String | Null | Yes |
| image | String | Null | Yes |
| password | String | Null | Yes |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | Null | Yes |
| profile_image_url | String | Null | Yes |
| evm_address | String | Null | Yes |
| bech32_address | String | Null | Yes |
| pinned_tweet_id | String | Null | Yes |
| accounts | AccountUncheckedCreateNestedManyWithoutUserInput | No |
| sessions | SessionUncheckedCreateNestedManyWithoutUserInput | No |
| tweets | TweetUncheckedCreateNestedManyWithoutAuthorInput | No |
| likes | LikeUncheckedCreateNestedManyWithoutUserInput | No |
| reputations | ReputationUncheckedCreateNestedManyWithoutUserInput | No |
| votes | VoteUncheckedCreateNestedManyWithoutUserInput | No |
| followers | FollowerUncheckedCreateNestedManyWithoutFollowerInput | No |
| following | FollowerUncheckedCreateNestedManyWithoutFollowedInput | No |
| retweets | RetweetUncheckedCreateNestedManyWithoutUserInput | No |
| bookmarks | BookmarkUncheckedCreateNestedManyWithoutUserInput | No |
| sent_messages | MessageUncheckedCreateNestedManyWithoutReceiverInput | No |
| received_messages | MessageUncheckedCreateNestedManyWithoutSenderInput | No |
| conversations | ConversationUncheckedCreateNestedManyWithoutUsersInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereUniqueInput | No |
| create | UserCreateWithoutCryptoLoginNonceInput | UserUncheckedCreateWithoutCryptoLoginNonceInput | No |
| Name | Type | Nullable |
|---|---|---|
| update | UserUpdateWithoutCryptoLoginNonceInput | UserUncheckedUpdateWithoutCryptoLoginNonceInput | No |
| create | UserCreateWithoutCryptoLoginNonceInput | UserUncheckedCreateWithoutCryptoLoginNonceInput | No |
| where | UserWhereInput | No |
| Name | Type | Nullable |
|---|---|---|
| where | UserWhereInput | No |
| data | UserUpdateWithoutCryptoLoginNonceInput | UserUncheckedUpdateWithoutCryptoLoginNonceInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| type | String | No |
| provider | String | No |
| providerAccountId | String | No |
| refresh_token | String | Null | Yes |
| access_token | String | Null | Yes |
| oath_token | String | Null | Yes |
| oauth_token_secret | String | Null | Yes |
| expires_at | Int | Null | Yes |
| token_type | String | Null | Yes |
| scope | String | Null | Yes |
| id_token | String | Null | Yes |
| session_state | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| sessionToken | String | No |
| expires | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| source | String | No |
| in_reply_to_user_id | String | Null | Yes |
| in_reply_to_screen_name | String | Null | Yes |
| is_quote_status | Boolean | No |
| quoted_status_id | String | Null | Yes |
| quote_count | Int | No |
| reply_count | Int | No |
| retweet_count | Int | No |
| favorite_count | Int | No |
| vote_count | Int | No |
| possibly_sensitive | Boolean | No |
| lang | String | No |
| created_at | DateTime | No |
| quoted_tweet_id | String | Null | Yes |
| in_reply_to_status_id | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| tweet_id | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| session_owner_id | String | No |
| reputation_status | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| tweet_id | String | No |
| vote_status | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| followed_id | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| follower_id | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| tweet_id | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| tweet_id | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| image | String | Null | Yes |
| created_at | DateTime | No |
| sender_id | String | No |
| conversation_id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| image | String | Null | Yes |
| created_at | DateTime | No |
| receiver_id | String | No |
| conversation_id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| provider | String | StringFieldUpdateOperationsInput | No |
| providerAccountId | String | StringFieldUpdateOperationsInput | No |
| refresh_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| access_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| oath_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| oauth_token_secret | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| expires_at | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| token_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| session_state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| provider | String | StringFieldUpdateOperationsInput | No |
| providerAccountId | String | StringFieldUpdateOperationsInput | No |
| refresh_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| access_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| oath_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| oauth_token_secret | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| expires_at | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| token_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| session_state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| type | String | StringFieldUpdateOperationsInput | No |
| provider | String | StringFieldUpdateOperationsInput | No |
| providerAccountId | String | StringFieldUpdateOperationsInput | No |
| refresh_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| access_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| oath_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| oauth_token_secret | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| expires_at | Int | NullableIntFieldUpdateOperationsInput | Null | Yes |
| token_type | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| scope | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| id_token | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| session_state | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| sessionToken | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| sessionToken | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| sessionToken | String | StringFieldUpdateOperationsInput | No |
| expires | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| tweet | TweetUpdateOneRequiredWithoutLikesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| tweet_id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| tweet_id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| session_owner_id | String | StringFieldUpdateOperationsInput | No |
| reputation_status | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| session_owner_id | String | StringFieldUpdateOperationsInput | No |
| reputation_status | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| session_owner_id | String | StringFieldUpdateOperationsInput | No |
| reputation_status | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| vote_status | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| tweet | TweetUpdateOneRequiredWithoutVotesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| tweet_id | String | StringFieldUpdateOperationsInput | No |
| vote_status | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| tweet_id | String | StringFieldUpdateOperationsInput | No |
| vote_status | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| followed | UserUpdateOneRequiredWithoutFollowingNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| followed_id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| followed_id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| follower | UserUpdateOneRequiredWithoutFollowersNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| follower_id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| follower_id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| tweet | TweetUpdateOneRequiredWithoutRetweetsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| tweet_id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| tweet_id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| tweet | TweetUpdateOneRequiredWithoutBookmarksNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| tweet_id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| tweet_id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| text | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| sender | UserUpdateOneRequiredWithoutReceived_messagesNestedInput | No |
| conversation | ConversationUpdateOneRequiredWithoutMessagesNestedInput | No |
| media | MediaUpdateManyWithoutMessageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| text | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| sender_id | String | StringFieldUpdateOperationsInput | No |
| conversation_id | String | StringFieldUpdateOperationsInput | No |
| media | MediaUncheckedUpdateManyWithoutMessageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| text | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| sender_id | String | StringFieldUpdateOperationsInput | No |
| conversation_id | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| text | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| receiver | UserUpdateOneRequiredWithoutSent_messagesNestedInput | No |
| conversation | ConversationUpdateOneRequiredWithoutMessagesNestedInput | No |
| media | MediaUpdateManyWithoutMessageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| text | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| receiver_id | String | StringFieldUpdateOperationsInput | No |
| conversation_id | String | StringFieldUpdateOperationsInput | No |
| media | MediaUncheckedUpdateManyWithoutMessageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| text | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| receiver_id | String | StringFieldUpdateOperationsInput | No |
| conversation_id | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| messages | MessageUpdateManyWithoutConversationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| messages | MessageUncheckedUpdateManyWithoutConversationNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| media_url | String | No |
| media_type | String | No |
| media_path | String | No |
| message_id | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| user_id | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| user_id | String | No |
| vote_status | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| user_id | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| source | String | No |
| in_reply_to_user_id | String | Null | Yes |
| in_reply_to_screen_name | String | Null | Yes |
| is_quote_status | Boolean | No |
| quoted_status_id | String | Null | Yes |
| quote_count | Int | No |
| reply_count | Int | No |
| retweet_count | Int | No |
| favorite_count | Int | No |
| vote_count | Int | No |
| possibly_sensitive | Boolean | No |
| lang | String | No |
| created_at | DateTime | No |
| author_id | String | No |
| in_reply_to_status_id | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| source | String | No |
| in_reply_to_user_id | String | Null | Yes |
| in_reply_to_screen_name | String | Null | Yes |
| is_quote_status | Boolean | No |
| quoted_status_id | String | Null | Yes |
| quote_count | Int | No |
| reply_count | Int | No |
| retweet_count | Int | No |
| favorite_count | Int | No |
| vote_count | Int | No |
| possibly_sensitive | Boolean | No |
| lang | String | No |
| created_at | DateTime | No |
| author_id | String | No |
| quoted_tweet_id | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| user_id | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | Null | Yes |
| url | String | Null | Yes |
| description | String | Null | Yes |
| detail | String | Null | Yes |
| protected | Boolean | No |
| verified | Boolean | No |
| String | Null | Yes | |
| emailVerified | DateTime | Null | Yes |
| google_id | String | Null | Yes |
| google_username | String | Null | Yes |
| google_email | String | Null | Yes |
| discord_id | String | Null | Yes |
| discord_username | String | Null | Yes |
| discord_email | String | Null | Yes |
| twitter_id | String | Null | Yes |
| twitter_username | String | Null | Yes |
| twitter_email | String | Null | Yes |
| image | String | Null | Yes |
| password | String | Null | Yes |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | Null | Yes |
| profile_image_url | String | Null | Yes |
| evm_address | String | Null | Yes |
| bech32_address | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| media_url | String | StringFieldUpdateOperationsInput | No |
| media_type | String | StringFieldUpdateOperationsInput | No |
| media_path | String | StringFieldUpdateOperationsInput | No |
| Message | MessageUpdateOneWithoutMediaNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| media_url | String | StringFieldUpdateOperationsInput | No |
| media_type | String | StringFieldUpdateOperationsInput | No |
| media_path | String | StringFieldUpdateOperationsInput | No |
| message_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| media_url | String | StringFieldUpdateOperationsInput | No |
| media_type | String | StringFieldUpdateOperationsInput | No |
| media_path | String | StringFieldUpdateOperationsInput | No |
| message_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutLikesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| user_id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| user_id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| vote_status | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutVotesNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| user_id | String | StringFieldUpdateOperationsInput | No |
| vote_status | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| user_id | String | StringFieldUpdateOperationsInput | No |
| vote_status | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutRetweetsNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| user_id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| user_id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| user | UserUpdateOneRequiredWithoutBookmarksNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| user_id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| user_id | String | StringFieldUpdateOperationsInput | No |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| media_url | String | No |
| media_type | String | No |
| media_path | String | No |
| tweet_id | String | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| media_url | String | StringFieldUpdateOperationsInput | No |
| media_type | String | StringFieldUpdateOperationsInput | No |
| media_path | String | StringFieldUpdateOperationsInput | No |
| tweet | TweetUpdateOneWithoutMediaNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| media_url | String | StringFieldUpdateOperationsInput | No |
| media_type | String | StringFieldUpdateOperationsInput | No |
| media_path | String | StringFieldUpdateOperationsInput | No |
| tweet_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| media_url | String | StringFieldUpdateOperationsInput | No |
| media_type | String | StringFieldUpdateOperationsInput | No |
| media_path | String | StringFieldUpdateOperationsInput | No |
| tweet_id | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | Null | Yes |
| image | String | Null | Yes |
| created_at | DateTime | No |
| sender_id | String | No |
| receiver_id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| text | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| sender | UserUpdateOneRequiredWithoutReceived_messagesNestedInput | No |
| receiver | UserUpdateOneRequiredWithoutSent_messagesNestedInput | No |
| media | MediaUpdateManyWithoutMessageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| text | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| sender_id | String | StringFieldUpdateOperationsInput | No |
| receiver_id | String | StringFieldUpdateOperationsInput | No |
| media | MediaUncheckedUpdateManyWithoutMessageNestedInput | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | StringFieldUpdateOperationsInput | No |
| text | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| image | String | NullableStringFieldUpdateOperationsInput | Null | Yes |
| created_at | DateTime | DateTimeFieldUpdateOperationsInput | No |
| sender_id | String | StringFieldUpdateOperationsInput | No |
| receiver_id | String | StringFieldUpdateOperationsInput | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | Yes |
| token | String | Yes |
| expires | DateTime | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| userId | String | Yes |
| type | String | Yes |
| provider | String | Yes |
| providerAccountId | String | Yes |
| refresh_token | String | No |
| access_token | String | No |
| oath_token | String | No |
| oauth_token_secret | String | No |
| expires_at | Int | No |
| token_type | String | No |
| scope | String | No |
| id_token | String | No |
| session_state | String | No |
| user | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| sessionToken | String | Yes |
| expires | DateTime | Yes |
| userId | String | Yes |
| user | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| screen_name | String | Yes |
| location | String | No |
| url | String | No |
| description | String | No |
| detail | String | No |
| protected | Boolean | Yes |
| verified | Boolean | Yes |
| String | No | |
| emailVerified | DateTime | No |
| google_id | String | No |
| google_username | String | No |
| google_email | String | No |
| discord_id | String | No |
| discord_username | String | No |
| discord_email | String | No |
| twitter_id | String | No |
| twitter_username | String | No |
| twitter_email | String | No |
| image | String | No |
| password | String | No |
| role | UserRole | Yes |
| created_at | DateTime | Yes |
| followers_count | Int | Yes |
| friends_count | Int | Yes |
| favorites_count | Int | Yes |
| statuses_count | Int | Yes |
| reputation_count | Float | Yes |
| normalized_reputation | Int | Yes |
| profile_banner_url | String | No |
| profile_image_url | String | No |
| evm_address | String | No |
| bech32_address | String | No |
| pinned_tweet_id | String | No |
| cryptoLoginNonce | CryptoLoginNonce | No |
| accounts | Account[] | No |
| sessions | Session[] | No |
| tweets | Tweet[] | No |
| likes | Like[] | No |
| reputations | Reputation[] | No |
| votes | Vote[] | No |
| followers | Follower[] | No |
| following | Follower[] | No |
| retweets | Retweet[] | No |
| bookmarks | Bookmark[] | No |
| sent_messages | Message[] | No |
| received_messages | Message[] | No |
| conversations | Conversation[] | No |
| pinned_tweet | Tweet | No |
| _count | UserCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| follower_id | String | Yes |
| followed_id | String | Yes |
| created_at | DateTime | Yes |
| follower | User | Yes |
| followed | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| user_id | String | Yes |
| follower_id | String | Yes |
| balance | Float | Yes |
| amount | Float | Yes |
| description | String | Yes |
| created_at | DateTime | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| text | String | No |
| source | String | Yes |
| in_reply_to_user_id | String | No |
| in_reply_to_screen_name | String | No |
| is_quote_status | Boolean | Yes |
| quoted_status_id | String | No |
| quote_count | Int | Yes |
| reply_count | Int | Yes |
| retweet_count | Int | Yes |
| favorite_count | Int | Yes |
| vote_count | Int | Yes |
| possibly_sensitive | Boolean | Yes |
| lang | String | Yes |
| created_at | DateTime | Yes |
| author_id | String | Yes |
| quoted_tweet_id | String | No |
| in_reply_to_status_id | String | No |
| author | User | Yes |
| media | Media[] | No |
| likes | Like[] | No |
| votes | Vote[] | No |
| retweets | Retweet[] | No |
| quotes | Tweet[] | No |
| quoted_tweet | Tweet | No |
| comments | Tweet[] | No |
| tweet_comment | Tweet | No |
| bookmarks | Bookmark[] | No |
| pinned_by_users | User[] | No |
| _count | TweetCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| media_url | String | Yes |
| media_type | String | Yes |
| media_path | String | Yes |
| tweet_id | String | No |
| message_id | String | No |
| tweet | Tweet | No |
| Message | Message | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| tweet_id | String | Yes |
| user_id | String | Yes |
| created_at | DateTime | Yes |
| tweet | Tweet | Yes |
| user | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| user_id | String | Yes |
| session_owner_id | String | Yes |
| reputation_status | String | Yes |
| created_at | DateTime | Yes |
| user | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| tweet_id | String | Yes |
| user_id | String | Yes |
| vote_status | String | Yes |
| created_at | DateTime | Yes |
| tweet | Tweet | Yes |
| user | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| tweet_id | String | Yes |
| user_id | String | Yes |
| created_at | DateTime | Yes |
| tweet | Tweet | Yes |
| user | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| tweet_id | String | Yes |
| user_id | String | Yes |
| created_at | DateTime | Yes |
| tweet | Tweet | Yes |
| user | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| text | String | Yes |
| hashtag | String | Yes |
| score | Int | Yes |
| created_at | DateTime | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| text | String | No |
| image | String | No |
| created_at | DateTime | Yes |
| sender_id | String | Yes |
| receiver_id | String | Yes |
| conversation_id | String | Yes |
| sender | User | Yes |
| receiver | User | Yes |
| conversation | Conversation | Yes |
| media | Media[] | No |
| _count | MessageCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| created_at | DateTime | Yes |
| users | User[] | No |
| messages | Message[] | No |
| _count | ConversationCountOutputType | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | String | Yes |
| nonce | String | Yes |
| expires | DateTime | Yes |
| user | User | Yes |
| Name | Type | Nullable |
|---|---|---|
| _count | VerificationTokenCountAggregateOutputType | No |
| _min | VerificationTokenMinAggregateOutputType | No |
| _max | VerificationTokenMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | Yes |
| token | String | Yes |
| expires | DateTime | Yes |
| _count | VerificationTokenCountAggregateOutputType | No |
| _min | VerificationTokenMinAggregateOutputType | No |
| _max | VerificationTokenMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | AccountCountAggregateOutputType | No |
| _avg | AccountAvgAggregateOutputType | No |
| _sum | AccountSumAggregateOutputType | No |
| _min | AccountMinAggregateOutputType | No |
| _max | AccountMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| userId | String | Yes |
| type | String | Yes |
| provider | String | Yes |
| providerAccountId | String | Yes |
| refresh_token | String | No |
| access_token | String | No |
| oath_token | String | No |
| oauth_token_secret | String | No |
| expires_at | Int | No |
| token_type | String | No |
| scope | String | No |
| id_token | String | No |
| session_state | String | No |
| _count | AccountCountAggregateOutputType | No |
| _avg | AccountAvgAggregateOutputType | No |
| _sum | AccountSumAggregateOutputType | No |
| _min | AccountMinAggregateOutputType | No |
| _max | AccountMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | SessionCountAggregateOutputType | No |
| _min | SessionMinAggregateOutputType | No |
| _max | SessionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| sessionToken | String | Yes |
| expires | DateTime | Yes |
| userId | String | Yes |
| _count | SessionCountAggregateOutputType | No |
| _min | SessionMinAggregateOutputType | No |
| _max | SessionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | UserCountAggregateOutputType | No |
| _avg | UserAvgAggregateOutputType | No |
| _sum | UserSumAggregateOutputType | No |
| _min | UserMinAggregateOutputType | No |
| _max | UserMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| name | String | Yes |
| screen_name | String | Yes |
| location | String | No |
| url | String | No |
| description | String | No |
| detail | String | No |
| protected | Boolean | Yes |
| verified | Boolean | Yes |
| String | No | |
| emailVerified | DateTime | No |
| google_id | String | No |
| google_username | String | No |
| google_email | String | No |
| discord_id | String | No |
| discord_username | String | No |
| discord_email | String | No |
| twitter_id | String | No |
| twitter_username | String | No |
| twitter_email | String | No |
| image | String | No |
| password | String | No |
| role | UserRole | Yes |
| created_at | DateTime | Yes |
| followers_count | Int | Yes |
| friends_count | Int | Yes |
| favorites_count | Int | Yes |
| statuses_count | Int | Yes |
| reputation_count | Float | Yes |
| normalized_reputation | Int | Yes |
| profile_banner_url | String | No |
| profile_image_url | String | No |
| evm_address | String | No |
| bech32_address | String | No |
| pinned_tweet_id | String | No |
| _count | UserCountAggregateOutputType | No |
| _avg | UserAvgAggregateOutputType | No |
| _sum | UserSumAggregateOutputType | No |
| _min | UserMinAggregateOutputType | No |
| _max | UserMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | FollowerCountAggregateOutputType | No |
| _min | FollowerMinAggregateOutputType | No |
| _max | FollowerMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| follower_id | String | Yes |
| followed_id | String | Yes |
| created_at | DateTime | Yes |
| _count | FollowerCountAggregateOutputType | No |
| _min | FollowerMinAggregateOutputType | No |
| _max | FollowerMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | TransactionCountAggregateOutputType | No |
| _avg | TransactionAvgAggregateOutputType | No |
| _sum | TransactionSumAggregateOutputType | No |
| _min | TransactionMinAggregateOutputType | No |
| _max | TransactionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| user_id | String | Yes |
| follower_id | String | Yes |
| balance | Float | Yes |
| amount | Float | Yes |
| description | String | Yes |
| created_at | DateTime | Yes |
| _count | TransactionCountAggregateOutputType | No |
| _avg | TransactionAvgAggregateOutputType | No |
| _sum | TransactionSumAggregateOutputType | No |
| _min | TransactionMinAggregateOutputType | No |
| _max | TransactionMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | TweetCountAggregateOutputType | No |
| _avg | TweetAvgAggregateOutputType | No |
| _sum | TweetSumAggregateOutputType | No |
| _min | TweetMinAggregateOutputType | No |
| _max | TweetMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| text | String | No |
| source | String | Yes |
| in_reply_to_user_id | String | No |
| in_reply_to_screen_name | String | No |
| is_quote_status | Boolean | Yes |
| quoted_status_id | String | No |
| quote_count | Int | Yes |
| reply_count | Int | Yes |
| retweet_count | Int | Yes |
| favorite_count | Int | Yes |
| vote_count | Int | Yes |
| possibly_sensitive | Boolean | Yes |
| lang | String | Yes |
| created_at | DateTime | Yes |
| author_id | String | Yes |
| quoted_tweet_id | String | No |
| in_reply_to_status_id | String | No |
| _count | TweetCountAggregateOutputType | No |
| _avg | TweetAvgAggregateOutputType | No |
| _sum | TweetSumAggregateOutputType | No |
| _min | TweetMinAggregateOutputType | No |
| _max | TweetMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | MediaCountAggregateOutputType | No |
| _min | MediaMinAggregateOutputType | No |
| _max | MediaMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| media_url | String | Yes |
| media_type | String | Yes |
| media_path | String | Yes |
| tweet_id | String | No |
| message_id | String | No |
| _count | MediaCountAggregateOutputType | No |
| _min | MediaMinAggregateOutputType | No |
| _max | MediaMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | LikeCountAggregateOutputType | No |
| _min | LikeMinAggregateOutputType | No |
| _max | LikeMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| tweet_id | String | Yes |
| user_id | String | Yes |
| created_at | DateTime | Yes |
| _count | LikeCountAggregateOutputType | No |
| _min | LikeMinAggregateOutputType | No |
| _max | LikeMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ReputationCountAggregateOutputType | No |
| _min | ReputationMinAggregateOutputType | No |
| _max | ReputationMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| user_id | String | Yes |
| session_owner_id | String | Yes |
| reputation_status | String | Yes |
| created_at | DateTime | Yes |
| _count | ReputationCountAggregateOutputType | No |
| _min | ReputationMinAggregateOutputType | No |
| _max | ReputationMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | VoteCountAggregateOutputType | No |
| _min | VoteMinAggregateOutputType | No |
| _max | VoteMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| tweet_id | String | Yes |
| user_id | String | Yes |
| vote_status | String | Yes |
| created_at | DateTime | Yes |
| _count | VoteCountAggregateOutputType | No |
| _min | VoteMinAggregateOutputType | No |
| _max | VoteMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | RetweetCountAggregateOutputType | No |
| _min | RetweetMinAggregateOutputType | No |
| _max | RetweetMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| tweet_id | String | Yes |
| user_id | String | Yes |
| created_at | DateTime | Yes |
| _count | RetweetCountAggregateOutputType | No |
| _min | RetweetMinAggregateOutputType | No |
| _max | RetweetMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | BookmarkCountAggregateOutputType | No |
| _min | BookmarkMinAggregateOutputType | No |
| _max | BookmarkMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| tweet_id | String | Yes |
| user_id | String | Yes |
| created_at | DateTime | Yes |
| _count | BookmarkCountAggregateOutputType | No |
| _min | BookmarkMinAggregateOutputType | No |
| _max | BookmarkMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | HashtagCountAggregateOutputType | No |
| _avg | HashtagAvgAggregateOutputType | No |
| _sum | HashtagSumAggregateOutputType | No |
| _min | HashtagMinAggregateOutputType | No |
| _max | HashtagMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| text | String | Yes |
| hashtag | String | Yes |
| score | Int | Yes |
| created_at | DateTime | Yes |
| _count | HashtagCountAggregateOutputType | No |
| _avg | HashtagAvgAggregateOutputType | No |
| _sum | HashtagSumAggregateOutputType | No |
| _min | HashtagMinAggregateOutputType | No |
| _max | HashtagMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | MessageCountAggregateOutputType | No |
| _min | MessageMinAggregateOutputType | No |
| _max | MessageMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| text | String | No |
| image | String | No |
| created_at | DateTime | Yes |
| sender_id | String | Yes |
| receiver_id | String | Yes |
| conversation_id | String | Yes |
| _count | MessageCountAggregateOutputType | No |
| _min | MessageMinAggregateOutputType | No |
| _max | MessageMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | ConversationCountAggregateOutputType | No |
| _min | ConversationMinAggregateOutputType | No |
| _max | ConversationMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | Yes |
| created_at | DateTime | Yes |
| _count | ConversationCountAggregateOutputType | No |
| _min | ConversationMinAggregateOutputType | No |
| _max | ConversationMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| _count | CryptoLoginNonceCountAggregateOutputType | No |
| _min | CryptoLoginNonceMinAggregateOutputType | No |
| _max | CryptoLoginNonceMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | Yes |
| nonce | String | Yes |
| expires | DateTime | Yes |
| _count | CryptoLoginNonceCountAggregateOutputType | No |
| _min | CryptoLoginNonceMinAggregateOutputType | No |
| _max | CryptoLoginNonceMaxAggregateOutputType | No |
| Name | Type | Nullable |
|---|---|---|
| count | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| identifier | Int | Yes |
| token | Int | Yes |
| expires | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | No |
| token | String | No |
| expires | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| identifier | String | No |
| token | String | No |
| expires | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| userId | Int | Yes |
| type | Int | Yes |
| provider | Int | Yes |
| providerAccountId | Int | Yes |
| refresh_token | Int | Yes |
| access_token | Int | Yes |
| oath_token | Int | Yes |
| oauth_token_secret | Int | Yes |
| expires_at | Int | Yes |
| token_type | Int | Yes |
| scope | Int | Yes |
| id_token | Int | Yes |
| session_state | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| expires_at | Float | No |
| Name | Type | Nullable |
|---|---|---|
| expires_at | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| userId | String | No |
| type | String | No |
| provider | String | No |
| providerAccountId | String | No |
| refresh_token | String | No |
| access_token | String | No |
| oath_token | String | No |
| oauth_token_secret | String | No |
| expires_at | Int | No |
| token_type | String | No |
| scope | String | No |
| id_token | String | No |
| session_state | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| userId | String | No |
| type | String | No |
| provider | String | No |
| providerAccountId | String | No |
| refresh_token | String | No |
| access_token | String | No |
| oath_token | String | No |
| oauth_token_secret | String | No |
| expires_at | Int | No |
| token_type | String | No |
| scope | String | No |
| id_token | String | No |
| session_state | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| sessionToken | Int | Yes |
| expires | Int | Yes |
| userId | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| sessionToken | String | No |
| expires | DateTime | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| sessionToken | String | No |
| expires | DateTime | No |
| userId | String | No |
| Name | Type | Nullable |
|---|---|---|
| accounts | Int | Yes |
| sessions | Int | Yes |
| tweets | Int | Yes |
| likes | Int | Yes |
| reputations | Int | Yes |
| votes | Int | Yes |
| followers | Int | Yes |
| following | Int | Yes |
| retweets | Int | Yes |
| bookmarks | Int | Yes |
| sent_messages | Int | Yes |
| received_messages | Int | Yes |
| conversations | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| name | Int | Yes |
| screen_name | Int | Yes |
| location | Int | Yes |
| url | Int | Yes |
| description | Int | Yes |
| detail | Int | Yes |
| protected | Int | Yes |
| verified | Int | Yes |
| Int | Yes | |
| emailVerified | Int | Yes |
| google_id | Int | Yes |
| google_username | Int | Yes |
| google_email | Int | Yes |
| discord_id | Int | Yes |
| discord_username | Int | Yes |
| discord_email | Int | Yes |
| twitter_id | Int | Yes |
| twitter_username | Int | Yes |
| twitter_email | Int | Yes |
| image | Int | Yes |
| password | Int | Yes |
| role | Int | Yes |
| created_at | Int | Yes |
| followers_count | Int | Yes |
| friends_count | Int | Yes |
| favorites_count | Int | Yes |
| statuses_count | Int | Yes |
| reputation_count | Int | Yes |
| normalized_reputation | Int | Yes |
| profile_banner_url | Int | Yes |
| profile_image_url | Int | Yes |
| evm_address | Int | Yes |
| bech32_address | Int | Yes |
| pinned_tweet_id | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| followers_count | Float | No |
| friends_count | Float | No |
| favorites_count | Float | No |
| statuses_count | Float | No |
| reputation_count | Float | No |
| normalized_reputation | Float | No |
| Name | Type | Nullable |
|---|---|---|
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | No |
| url | String | No |
| description | String | No |
| detail | String | No |
| protected | Boolean | No |
| verified | Boolean | No |
| String | No | |
| emailVerified | DateTime | No |
| google_id | String | No |
| google_username | String | No |
| google_email | String | No |
| discord_id | String | No |
| discord_username | String | No |
| discord_email | String | No |
| twitter_id | String | No |
| twitter_username | String | No |
| twitter_email | String | No |
| image | String | No |
| password | String | No |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | No |
| profile_image_url | String | No |
| evm_address | String | No |
| bech32_address | String | No |
| pinned_tweet_id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| name | String | No |
| screen_name | String | No |
| location | String | No |
| url | String | No |
| description | String | No |
| detail | String | No |
| protected | Boolean | No |
| verified | Boolean | No |
| String | No | |
| emailVerified | DateTime | No |
| google_id | String | No |
| google_username | String | No |
| google_email | String | No |
| discord_id | String | No |
| discord_username | String | No |
| discord_email | String | No |
| twitter_id | String | No |
| twitter_username | String | No |
| twitter_email | String | No |
| image | String | No |
| password | String | No |
| role | UserRole | No |
| created_at | DateTime | No |
| followers_count | Int | No |
| friends_count | Int | No |
| favorites_count | Int | No |
| statuses_count | Int | No |
| reputation_count | Float | No |
| normalized_reputation | Int | No |
| profile_banner_url | String | No |
| profile_image_url | String | No |
| evm_address | String | No |
| bech32_address | String | No |
| pinned_tweet_id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| follower_id | Int | Yes |
| followed_id | Int | Yes |
| created_at | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| follower_id | String | No |
| followed_id | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| follower_id | String | No |
| followed_id | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| user_id | Int | Yes |
| follower_id | Int | Yes |
| balance | Int | Yes |
| amount | Int | Yes |
| description | Int | Yes |
| created_at | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| balance | Float | No |
| amount | Float | No |
| Name | Type | Nullable |
|---|---|---|
| balance | Float | No |
| amount | Float | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| user_id | String | No |
| follower_id | String | No |
| balance | Float | No |
| amount | Float | No |
| description | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| user_id | String | No |
| follower_id | String | No |
| balance | Float | No |
| amount | Float | No |
| description | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| media | Int | Yes |
| likes | Int | Yes |
| votes | Int | Yes |
| retweets | Int | Yes |
| quotes | Int | Yes |
| comments | Int | Yes |
| bookmarks | Int | Yes |
| pinned_by_users | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| text | Int | Yes |
| source | Int | Yes |
| in_reply_to_user_id | Int | Yes |
| in_reply_to_screen_name | Int | Yes |
| is_quote_status | Int | Yes |
| quoted_status_id | Int | Yes |
| quote_count | Int | Yes |
| reply_count | Int | Yes |
| retweet_count | Int | Yes |
| favorite_count | Int | Yes |
| vote_count | Int | Yes |
| possibly_sensitive | Int | Yes |
| lang | Int | Yes |
| created_at | Int | Yes |
| author_id | Int | Yes |
| quoted_tweet_id | Int | Yes |
| in_reply_to_status_id | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| quote_count | Float | No |
| reply_count | Float | No |
| retweet_count | Float | No |
| favorite_count | Float | No |
| vote_count | Float | No |
| Name | Type | Nullable |
|---|---|---|
| quote_count | Int | No |
| reply_count | Int | No |
| retweet_count | Int | No |
| favorite_count | Int | No |
| vote_count | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | No |
| source | String | No |
| in_reply_to_user_id | String | No |
| in_reply_to_screen_name | String | No |
| is_quote_status | Boolean | No |
| quoted_status_id | String | No |
| quote_count | Int | No |
| reply_count | Int | No |
| retweet_count | Int | No |
| favorite_count | Int | No |
| vote_count | Int | No |
| possibly_sensitive | Boolean | No |
| lang | String | No |
| created_at | DateTime | No |
| author_id | String | No |
| quoted_tweet_id | String | No |
| in_reply_to_status_id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | No |
| source | String | No |
| in_reply_to_user_id | String | No |
| in_reply_to_screen_name | String | No |
| is_quote_status | Boolean | No |
| quoted_status_id | String | No |
| quote_count | Int | No |
| reply_count | Int | No |
| retweet_count | Int | No |
| favorite_count | Int | No |
| vote_count | Int | No |
| possibly_sensitive | Boolean | No |
| lang | String | No |
| created_at | DateTime | No |
| author_id | String | No |
| quoted_tweet_id | String | No |
| in_reply_to_status_id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| media_url | Int | Yes |
| media_type | Int | Yes |
| media_path | Int | Yes |
| tweet_id | Int | Yes |
| message_id | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| media_url | String | No |
| media_type | String | No |
| media_path | String | No |
| tweet_id | String | No |
| message_id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| media_url | String | No |
| media_type | String | No |
| media_path | String | No |
| tweet_id | String | No |
| message_id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| tweet_id | Int | Yes |
| user_id | Int | Yes |
| created_at | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| tweet_id | String | No |
| user_id | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| tweet_id | String | No |
| user_id | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| user_id | Int | Yes |
| session_owner_id | Int | Yes |
| reputation_status | Int | Yes |
| created_at | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| user_id | String | No |
| session_owner_id | String | No |
| reputation_status | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| user_id | String | No |
| session_owner_id | String | No |
| reputation_status | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| tweet_id | Int | Yes |
| user_id | Int | Yes |
| vote_status | Int | Yes |
| created_at | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| tweet_id | String | No |
| user_id | String | No |
| vote_status | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| tweet_id | String | No |
| user_id | String | No |
| vote_status | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| tweet_id | Int | Yes |
| user_id | Int | Yes |
| created_at | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| tweet_id | String | No |
| user_id | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| tweet_id | String | No |
| user_id | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| tweet_id | Int | Yes |
| user_id | Int | Yes |
| created_at | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| tweet_id | String | No |
| user_id | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| tweet_id | String | No |
| user_id | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| text | Int | Yes |
| hashtag | Int | Yes |
| score | Int | Yes |
| created_at | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| score | Float | No |
| Name | Type | Nullable |
|---|---|---|
| score | Int | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | No |
| hashtag | String | No |
| score | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | No |
| hashtag | String | No |
| score | Int | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| media | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| text | Int | Yes |
| image | Int | Yes |
| created_at | Int | Yes |
| sender_id | Int | Yes |
| receiver_id | Int | Yes |
| conversation_id | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | No |
| image | String | No |
| created_at | DateTime | No |
| sender_id | String | No |
| receiver_id | String | No |
| conversation_id | String | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| text | String | No |
| image | String | No |
| created_at | DateTime | No |
| sender_id | String | No |
| receiver_id | String | No |
| conversation_id | String | No |
| Name | Type | Nullable |
|---|---|---|
| users | Int | Yes |
| messages | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | Int | Yes |
| created_at | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| id | String | No |
| created_at | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| userId | Int | Yes |
| nonce | Int | Yes |
| expires | Int | Yes |
| _all | Int | Yes |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| nonce | String | No |
| expires | DateTime | No |
| Name | Type | Nullable |
|---|---|---|
| userId | String | No |
| nonce | String | No |
| expires | DateTime | No |